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 4428f34..401feb5 100644
--- a/examples/declarative/animations/property-animation.qml
+++ b/examples/declarative/animations/property-animation.qml
@@ -43,7 +43,7 @@ Item {
// Animate the y property. Setting repeat to true makes the
// animation repeat indefinitely, otherwise it would only run once.
SequentialAnimation on y {
- repeat: true
+ loops: Animation.Infinite
// Move from minHeight to maxHeight in 300ms, using the OutExpo easing function
NumberAnimation {