mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-11 02:48:39 +00:00
[GTK] Set default file priority to 4 in add dialog
This commit is contained in:
parent
944dc1659f
commit
57ea5ef5da
1 changed files with 2 additions and 1 deletions
|
@ -535,7 +535,8 @@ class AddTorrentDialog(component.Component):
|
||||||
if not file_dict['download']:
|
if not file_dict['download']:
|
||||||
files_list.append(0)
|
files_list.append(0)
|
||||||
else:
|
else:
|
||||||
files_list.append(1)
|
# Default lt file priority is 4
|
||||||
|
files_list.append(4)
|
||||||
|
|
||||||
return files_list
|
return files_list
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue