From 6f70a98b83b2177d1f372db9a8b2f5e596ee8cb9 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Thu, 11 Sep 2025 23:18:13 -0400 Subject: [PATCH] ColorSchemeTab: fixed currently selected scheme to match wallpaper. --- Modules/SettingsPanel/Tabs/ColorSchemeTab.qml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Modules/SettingsPanel/Tabs/ColorSchemeTab.qml b/Modules/SettingsPanel/Tabs/ColorSchemeTab.qml index 5708d01..f0b82e0 100644 --- a/Modules/SettingsPanel/Tabs/ColorSchemeTab.qml +++ b/Modules/SettingsPanel/Tabs/ColorSchemeTab.qml @@ -188,7 +188,7 @@ ColumnLayout { border.width: Math.max(1, Style.borderL * scaling) border.color: (!Settings.data.colorSchemes.useWallpaperColors && (Settings.data.colorSchemes.predefinedScheme === modelData.split("/").pop().replace( - ".json", ""))) ? Color.mPrimary : Color.mOutline + ".json", ""))) ? Color.mSecondary : Color.mOutline scale: root.cardScaleLow // Mouse area for selection @@ -287,17 +287,17 @@ ColumnLayout { anchors.right: parent.right anchors.top: parent.top anchors.margins: Style.marginS * scaling - width: 24 * scaling - height: 24 * scaling + width: 28 * scaling + height: 28 * scaling radius: width * 0.5 - color: Color.mPrimary + color: Color.mSecondary - NText { - anchors.centerIn: parent - text: "✓" - font.pointSize: Style.fontSizeXS * scaling + NIcon { + icon: "check" + font.pointSize: Style.fontSizeM * scaling font.weight: Style.fontWeightBold - color: Color.mOnPrimary + color: Color.mOnSecondary + anchors.centerIn: parent } }