Fix error with Settings().value() call

This commit is contained in:
Raoul Snyman 2017-09-28 16:50:23 -07:00
parent 77b9fee050
commit 76bf162383
1 changed files with 1 additions and 1 deletions

View File

@ -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():