background: make switching between clock stylies less janky

This commit is contained in:
end-4
2025-11-14 22:46:11 +01:00
parent aa85e2168e
commit cc519e9f60
2 changed files with 4 additions and 0 deletions
@@ -6,11 +6,13 @@ import qs.modules.common.widgets
Loader {
id: root
property bool shown: true
property alias fade: opacityBehavior.enabled
opacity: shown ? 1 : 0
visible: opacity > 0
active: opacity > 0
Behavior on opacity {
id: opacityBehavior
animation: Appearance.animation.elementMoveFast.numberAnimation.createObject(this)
}
}