From e08759752d367aa687d4d24c579514d4b34d4052 Mon Sep 17 00:00:00 2001 From: Kai Folf Date: Thu, 1 Aug 2024 10:32:59 +0700 Subject: [PATCH] fix: use the writable currentIndex property to store color --- contents/ui/configGeneral.qml | 2 +- contents/ui/main.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contents/ui/configGeneral.qml b/contents/ui/configGeneral.qml index 422258d..82b4a19 100644 --- a/contents/ui/configGeneral.qml +++ b/contents/ui/configGeneral.qml @@ -6,7 +6,7 @@ import org.kde.kirigami 2.5 as Kirigami Item { id: page - property alias cfg_sharkleColor: sharkleColor.currentText + property alias cfg_sharkleColor: sharkleColor.currentIndex Kirigami.FormLayout { diff --git a/contents/ui/main.qml b/contents/ui/main.qml index 91eb42a..2248cbf 100644 --- a/contents/ui/main.qml +++ b/contents/ui/main.qml @@ -18,7 +18,7 @@ PlasmoidItem { property int talkIndex: 0 property int soundIndex: 0 property bool isIdle: true - property string sharkleColor: Plasmoid.configuration.sharkleColor.toLowerCase() + property string sharkleColor: Plasmoid.configuration.sharkleColor == 1 ? "white" : "black" Timer { id: animationTimer