Corrected an issue causing the window text color not being configured for a non-standard palette read from a style sheet file. eric7

Wed, 04 Sep 2024 09:13:59 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 04 Sep 2024 09:13:59 +0200
branch
eric7
changeset 10909
4a847e8260c1
parent 10904
0dc0cf49d393
child 10910
13c8626c5024

Corrected an issue causing the window text color not being configured for a non-standard palette read from a style sheet file.

src/eric7/EricWidgets/EricApplication.py file | annotate | diff | comparison | revisions
--- a/src/eric7/EricWidgets/EricApplication.py	Sat Aug 31 19:27:43 2024 +0200
+++ b/src/eric7/EricWidgets/EricApplication.py	Wed Sep 04 09:13:59 2024 +0200
@@ -35,7 +35,7 @@
         "bright-text": QPalette.ColorRole.BrightText,
         "placeholder-text": QPalette.ColorRole.PlaceholderText,
         "window": QPalette.ColorRole.Window,
-        " window-text": QPalette.ColorRole.WindowText,
+        "window-text": QPalette.ColorRole.WindowText,
         "tooltip-base": QPalette.ColorRole.ToolTipBase,
         "tooltip-text": QPalette.ColorRole.ToolTipText,
         "button": QPalette.ColorRole.Button,

eric ide

mercurial