diff options
author | Unit 193 <unit193@unit193.net> | 2021-12-17 07:00:29 +0100 |
---|---|---|
committer | Calum Lind <calumlind+deluge@gmail.com> | 2023-04-23 19:15:52 +0200 |
commit | 366cded7be7fbc6a052502b1f4174935f53dc971 (patch) | |
tree | a2970c505ef6756188d93311154cb47b9703e2eb | |
parent | [GTK3] Fix missing AppIndicator option in Preferences (diff) | |
download | deluge-366cded7be7fbc6a052502b1f4174935f53dc971.tar.xz deluge-366cded7be7fbc6a052502b1f4174935f53dc971.zip |
[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
-rw-r--r-- | deluge/ui/gtk3/gtkui.py | 2 |
1 files changed, 1 insertions, 1 deletions
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, |