From 2fa24cd0e2fe24faf4b4050d88b02df067200cc3 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Wed, 16 Feb 2022 21:20:55 -0500 Subject: [PATCH] taskpanel: Ensure window color group is used, not header It seems we had this set to the header color group for the longest time, which didn't actually work (it defaulted to the window color group). It appears to have been fixed, and so the issue surfaced. --- containments/taskpanel/package/contents/ui/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containments/taskpanel/package/contents/ui/main.qml b/containments/taskpanel/package/contents/ui/main.qml index db3dd0e5..725d017b 100644 --- a/containments/taskpanel/package/contents/ui/main.qml +++ b/containments/taskpanel/package/contents/ui/main.qml @@ -24,7 +24,7 @@ PlasmaCore.ColorScope { width: 360 // contrasting colour - colorGroup: !plasmoid.nativeInterface.allMinimized ? PlasmaCore.Theme.HeaderColorGroup : PlasmaCore.Theme.ComplementaryColorGroup + colorGroup: !plasmoid.nativeInterface.allMinimized ? PlasmaCore.Theme.NormalColorGroup : PlasmaCore.Theme.ComplementaryColorGroup readonly property color backgroundColor: PlasmaCore.ColorScope.backgroundColor