From 62f9237aecf19754359fe58c6196c464912e87cd Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Wed, 11 Jun 2025 00:22:38 -0400 Subject: [PATCH] taskswitcher: Fix task close icon colour in light mode Breeze changed the icon for the "close" button to be a plain X, instead of having a red background. Ensure that we use the complementary colour scheme. --- kwin/mobiletaskswitcher/package/contents/ui/Task.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kwin/mobiletaskswitcher/package/contents/ui/Task.qml b/kwin/mobiletaskswitcher/package/contents/ui/Task.qml index 5f32d01f..3d5cc479 100644 --- a/kwin/mobiletaskswitcher/package/contents/ui/Task.qml +++ b/kwin/mobiletaskswitcher/package/contents/ui/Task.qml @@ -159,6 +159,10 @@ Item { // header RowLayout { id: appHeader + + Kirigami.Theme.inherit: false + Kirigami.Theme.colorSet: Kirigami.Theme.Complementary + Layout.fillWidth: true Layout.fillHeight: true Layout.minimumHeight: column.height - appView.height