test popouts #61

Merged
zach merged 7 commits from test-popouts into main 2026-04-18 00:17:36 +02:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 47b8d68d4b - Show all commits
+2 -2
View File
@@ -31,14 +31,14 @@ Item {
} }
} }
Behavior on x { Behavior on x {
enabled: root.offsetScale < 1
Anim { Anim {
duration: content.animLength duration: content.animLength
easing.bezierCurve: content.animCurve easing.bezierCurve: content.animCurve
} }
} }
Behavior on y { Behavior on y {
enabled: root.offsetScale < 1
Anim { Anim {
duration: content.animLength duration: content.animLength
easing.bezierCurve: content.animCurve easing.bezierCurve: content.animCurve
+2
View File
@@ -58,6 +58,8 @@ Item {
} }
} }
Behavior on implicitWidth { Behavior on implicitWidth {
enabled: root.offsetScale < 1
Anim { Anim {
duration: root.animLength duration: root.animLength
easing.bezierCurve: root.animCurve easing.bezierCurve: root.animCurve