From 366cded7be7fbc6a052502b1f4174935f53dc971 Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Fri, 17 Dec 2021 01:00:29 -0500 Subject: [PATCH] [GTKUI] Enable appindicator support by default On GNOME, I don't believe any tray icon or indicator support is enabled by default, but one can easily install an extension for indicators whereas I'm not sure about tray icons, but the 'top icons' extension I believe has had a flaky history. I'm not entirely sure how KDE handles things, but out of the box it too has indicator support and I believe that is preferred with the move to Wayland. In Xfce, the tray icon area is called "Status tray" and has support for both tray icons and indicators. Closes: https://github.com/deluge-torrent/deluge/pull/318 --- deluge/ui/gtk3/gtkui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/gtk3/gtkui.py b/deluge/ui/gtk3/gtkui.py index ddb2eb529..434d1b82b 100644 --- a/deluge/ui/gtk3/gtkui.py +++ b/deluge/ui/gtk3/gtkui.py @@ -89,7 +89,7 @@ DEFAULT_PREFS = { 'enable_system_tray': True, 'close_to_tray': False, 'start_in_tray': False, - 'enable_appindicator': False, + 'enable_appindicator': True, 'lock_tray': False, 'tray_password': '', 'check_new_releases': True,