fix: use the writable currentIndex property to store color

This commit is contained in:
Kai Folf 2024-08-01 10:32:59 +07:00
parent 60927a6a8a
commit e08759752d
Signed by: folfcoder
SSH key fingerprint: SHA256:Nwn09jQSW0yjKdDkM042MUSWzLnwGQaWUwtlCg8CHbs
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ import org.kde.kirigami 2.5 as Kirigami
Item { Item {
id: page id: page
property alias cfg_sharkleColor: sharkleColor.currentText property alias cfg_sharkleColor: sharkleColor.currentIndex
Kirigami.FormLayout { Kirigami.FormLayout {

View file

@ -18,7 +18,7 @@ PlasmoidItem {
property int talkIndex: 0 property int talkIndex: 0
property int soundIndex: 0 property int soundIndex: 0
property bool isIdle: true property bool isIdle: true
property string sharkleColor: Plasmoid.configuration.sharkleColor.toLowerCase() property string sharkleColor: Plasmoid.configuration.sharkleColor == 1 ? "white" : "black"
Timer { Timer {
id: animationTimer id: animationTimer