summaryrefslogtreecommitdiffstats
path: root/examples/declarative/animations/property-animation.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/animations/property-animation.qml')
-rw-r--r--examples/declarative/animations/property-animation.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/animations/property-animation.qml b/examples/declarative/animations/property-animation.qml
index 537ee26..4428f34 100644
--- a/examples/declarative/animations/property-animation.qml
+++ b/examples/declarative/animations/property-animation.qml
@@ -42,7 +42,7 @@ Item {
// Animate the y property. Setting repeat to true makes the
// animation repeat indefinitely, otherwise it would only run once.
- y: SequentialAnimation {
+ SequentialAnimation on y {
repeat: true
// Move from minHeight to maxHeight in 300ms, using the OutExpo easing function