From 76bf162383d48d0f53bad07da8777b2dd650748e Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Thu, 28 Sep 2017 16:50:23 -0700 Subject: [PATCH] Fix error with Settings().value() call --- openlp/core/ui/style.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/style.py b/openlp/core/ui/style.py index 7ffeb9533..71a7e5c15 100644 --- a/openlp/core/ui/style.py +++ b/openlp/core/ui/style.py @@ -84,7 +84,7 @@ def can_show_icon(): .. note:: This method uses internal imports to prevent circular imports. """ - return not is_macosx() or Settings.value('advanced/use_dark_style') + return not is_macosx() or Settings().value('advanced/use_dark_style') def get_application_stylesheet():