diff options
Diffstat (limited to 'grc/gui/ParamWidgets.py')
-rw-r--r-- | grc/gui/ParamWidgets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/ParamWidgets.py b/grc/gui/ParamWidgets.py index 2089e9cd72..feea8f8418 100644 --- a/grc/gui/ParamWidgets.py +++ b/grc/gui/ParamWidgets.py @@ -24,7 +24,7 @@ def have_dark_theme(): """ Check if a theme is dark based on its name. """ - return theme_name in Constants.GTK_DARK_THEMES or "dark" in theme_name.lower() + return theme_name and (theme_name in Constants.GTK_DARK_THEMES or "dark" in theme_name.lower()) # GoGoGo config = configparser.ConfigParser() config.read(os.path.expanduser(Constants.GTK_SETTINGS_INI_PATH)) |