summaryrefslogtreecommitdiffstats
path: root/deluge/ui/gtk3/gtkui.py
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2024-02-19 17:50:03 +0000
committerCalum Lind <calumlind+deluge@gmail.com>2024-02-19 17:50:37 +0000
commit7f3f7f69ee78610e95bea07d99f699e9310c4e08 (patch)
tree622b9cd8e5d32091c9aa9e4937b533975a40356c /deluge/ui/gtk3/gtkui.py
parent5dd7aa532183adfae7b1cee7450212acf2568205 (diff)
downloaddeluge-develop.tar.gz
deluge-develop.tar.bz2
deluge-develop.zip
[GtkUI] Reword preferences to prefer dark themeHEADdevelop
The GTK option for dark theme only provides a preference to use the dark theme, there is not a similar option for light theme so the settings should only refer to 'prefer dark theme' and whether it's on or off.
Diffstat (limited to 'deluge/ui/gtk3/gtkui.py')
-rw-r--r--deluge/ui/gtk3/gtkui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/deluge/ui/gtk3/gtkui.py b/deluge/ui/gtk3/gtkui.py
index 0fbb5b773..73a7c97ae 100644
--- a/deluge/ui/gtk3/gtkui.py
+++ b/deluge/ui/gtk3/gtkui.py
@@ -84,7 +84,7 @@ except ImportError:
DEFAULT_PREFS = {
'standalone': True,
- 'dark_theme': False,
+ 'prefer_dark_theme': False,
'interactive_add': True,
'focus_add_dialog': True,
'enable_system_tray': True,