diff --git a/deluge/ui/gtkui/glade/preferences_dialog.ui b/deluge/ui/gtkui/glade/preferences_dialog.ui index 45ad49b4f..3d20fac9e 100644 --- a/deluge/ui/gtkui/glade/preferences_dialog.ui +++ b/deluge/ui/gtkui/glade/preferences_dialog.ui @@ -813,6 +813,7 @@ and daemon (does not apply in Standalone mode). App Indicator False True + False True False True @@ -830,6 +831,7 @@ and daemon (does not apply in Standalone mode). Systray False True + False True False True diff --git a/deluge/ui/gtkui/preferences.py b/deluge/ui/gtkui/preferences.py index 28aa6494d..9b89211c8 100644 --- a/deluge/ui/gtkui/preferences.py +++ b/deluge/ui/gtkui/preferences.py @@ -848,7 +848,9 @@ class Preferences(component.Component): "spin_port_max": False}, "chk_random_outgoing_ports": {"spin_outgoing_port_min": False, "spin_outgoing_port_max": False}, - "chk_use_tray": {"chk_min_on_close": True, + "chk_use_tray": {"radio_appind": True, + "radio_systray": True, + "chk_min_on_close": True, "chk_start_in_tray": True, "alignment_tray_type": True, "chk_lock_tray": True}, diff --git a/deluge/ui/gtkui/queuedtorrents.py b/deluge/ui/gtkui/queuedtorrents.py index 2546db984..21a6d88e1 100644 --- a/deluge/ui/gtkui/queuedtorrents.py +++ b/deluge/ui/gtkui/queuedtorrents.py @@ -87,7 +87,7 @@ class QueuedTorrents(component.Component): for torrent in self.queue: if deluge.common.is_magnet(torrent): magnet = deluge.common.get_magnet_info(torrent) - row = self.liststore.append([magnet["name"], torrent]) + self.liststore.append([magnet["name"], torrent]) else: self.liststore.append([os.path.split(torrent)[1], torrent])