Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
4.6.0
-
None
-
cb406a116bf2237c743ac05882fb06927c70359c
Description
An example like the following will never have the dialanimation.running property set to true. Makes it difficult to time things for after an animation completes.
rotation: Behavior { SequentialAnimation { id: dialanimation NumberAnimation { id: rotationanimation; properties: "rotation"; easing: "InOutQuad" } PauseAnimation { duration: 2000 } ScriptAction{ script: { print("Done") } } } }