mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
fix priority popup title
This commit is contained in:
parent
0353a388b3
commit
db64745862
1 changed files with 1 additions and 1 deletions
|
@ -384,7 +384,7 @@ class TorrentDetail(BaseMode, component.Component):
|
|||
# show popup for priority selections
|
||||
def show_priority_popup(self):
|
||||
if self.marked:
|
||||
self.popup = SelectablePopup(self,"Torrent Actions",self.do_priority)
|
||||
self.popup = SelectablePopup(self,"Set File Priority",self.do_priority)
|
||||
self.popup.add_line("_Do Not Download",data=deluge.common.FILE_PRIORITY["Do Not Download"])
|
||||
self.popup.add_line("_Normal Priority",data=deluge.common.FILE_PRIORITY["Normal Priority"])
|
||||
self.popup.add_line("_High Priority",data=deluge.common.FILE_PRIORITY["High Priority"])
|
||||
|
|
Loading…
Add table
Reference in a new issue