[GTK] Set default file priority to 4 in add dialog

This commit is contained in:
Calum Lind 2018-09-24 15:13:35 +01:00
parent 944dc1659f
commit 57ea5ef5da

View File

@ -535,7 +535,8 @@ class AddTorrentDialog(component.Component):
if not file_dict['download']:
files_list.append(0)
else:
files_list.append(1)
# Default lt file priority is 4
files_list.append(4)
return files_list