From 4e1573cb397f23d87c5d27f284dd0229e5553d7f Mon Sep 17 00:00:00 2001 From: Asmageddon Date: Thu, 31 May 2012 11:51:12 +0200 Subject: [PATCH] Fixed 'Queue' option not being display in all torrents view --- deluge/ui/console/modes/torrent_actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/console/modes/torrent_actions.py b/deluge/ui/console/modes/torrent_actions.py index 49fdbda9f..3ba570138 100644 --- a/deluge/ui/console/modes/torrent_actions.py +++ b/deluge/ui/console/modes/torrent_actions.py @@ -318,7 +318,7 @@ def torrent_actions_popup(mode,tids,details=False, action = None): popup = SelectablePopup(mode,"Torrent Actions",torrent_action, (mode, tids)) popup.add_line("_Pause",data=ACTION.PAUSE) popup.add_line("_Resume",data=ACTION.RESUME) - if not details: + if details: popup.add_divider() popup.add_line("Queue",data=ACTION.QUEUE) popup.add_divider()