Wed, 04 Sep 2024 09:13:59 +0200
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,