wallpapers/color: call repaintNeeded after color is changed

Call `repaintNeeded` to update the accent color after the color is changed.
wilder-5.26
Fushan Wen 4 years ago
parent 87089f6004
commit 782f9570eb
No known key found for this signature in database
GPG Key ID: 2E48D1487C91DCAA
  1. 10
      wallpapers/color/contents/ui/main.qml

@ -12,6 +12,14 @@ Rectangle {
color: wallpaper.configuration.Color
Behavior on color {
ColorAnimation { duration: PlasmaCore.Units.longDuration }
SequentialAnimation {
ColorAnimation {
duration: PlasmaCore.Units.longDuration
}
ScriptAction {
script: wallpaper.repaintNeeded()
}
}
}
}

Loading…
Cancel
Save