mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix #1161 ask the user if they want to switch to Full allocation if
trying to change file priorities in the add torrent dialog while using Compact.
This commit is contained in:
parent
e5c734fb05
commit
2ce62bf19b
1 changed files with 8 additions and 1 deletions
|
@ -480,7 +480,14 @@ class AddTorrentDialog(component.Component):
|
|||
# Check to see if we can change file priorities
|
||||
(model, row) = self.listview_torrents.get_selection().get_selected()
|
||||
if self.options[model[row][0]]["compact_allocation"]:
|
||||
dialogs.InformationDialog(_("Unable to set file priority!"), _("File prioritization is unavailable when using Compact allocation."), self.dialog).run()
|
||||
def on_answer(response):
|
||||
if response == gtk.RESPONSE_YES:
|
||||
self.options[model[row][0]]["compact_allocation"] = False
|
||||
self.update_torrent_options(model[row][0])
|
||||
|
||||
d = dialogs.YesNoDialog(_("Unable to set file priority!"), _("File prioritization is unavailable when using Compact allocation. Would you like to switch to Full allocation?"), self.dialog).run()
|
||||
d.addCallback(on_answer)
|
||||
|
||||
return
|
||||
(model, paths) = self.listview_files.get_selection().get_selected_rows()
|
||||
if len(paths) > 1:
|
||||
|
|
Loading…
Add table
Reference in a new issue