- made sure that the 'default' theme gets the 'stronger' colors

This commit is contained in:
Marius Stanciu
2022-04-19 01:11:58 +03:00
committed by Marius
parent ba494718c4
commit c3b612bf49
2 changed files with 2 additions and 1 deletions

View File

@@ -82,7 +82,7 @@ class MainGUI(QtWidgets.QMainWindow):
"""
if color in self.theme_safe_colors:
if self.app.options['global_theme'] == 'light':
if self.app.options['global_theme'] in ['default', 'light']:
return color
else:
return self.theme_safe_colors[color]