Module: deluge Branch: master Commit: db6474586255345e6175701a678b2100b480afeb
Author: Nick <[email protected]> Date: Wed Feb 2 20:50:48 2011 +0100 fix priority popup title --- deluge/ui/console/modes/torrentdetail.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/deluge/ui/console/modes/torrentdetail.py b/deluge/ui/console/modes/torrentdetail.py index ec8d8ad..fe09d30 100644 --- a/deluge/ui/console/modes/torrentdetail.py +++ b/deluge/ui/console/modes/torrentdetail.py @@ -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"]) -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
