From 2aee2d28821e2348ae641cfb9d7af81477f05f00 Mon Sep 17 00:00:00 2001 From: Luis Bocanegra Date: Tue, 7 Jan 2025 17:03:35 -0600 Subject: [PATCH] fix: foreground color set option not changing colors --- package/contents/ui/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/contents/ui/main.qml b/package/contents/ui/main.qml index 4b364b7..7676c35 100644 --- a/package/contents/ui/main.qml +++ b/package/contents/ui/main.qml @@ -439,10 +439,10 @@ PlasmoidItem { bottomLeftRadius: bottomLeftRadius bottomRightRadius: bottomRightRadius } - Kirigami.Theme.colorSet: Kirigami.Theme[bgColorCfg.systemColorSet] + color: { if (bgEnabled) { - return getColor(bgColorCfg, targetIndex, null, itemType, rect) + return getColor(bgColorCfg, targetIndex, null, itemType, bgColorHolder) } else { return "transparent" }