summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/animation/loop/loop.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/visual/animation/loop/loop.qml')
-rw-r--r--tests/auto/declarative/visual/animation/loop/loop.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative/visual/animation/loop/loop.qml b/tests/auto/declarative/visual/animation/loop/loop.qml
index f6049ae..36f3ece 100644
--- a/tests/auto/declarative/visual/animation/loop/loop.qml
+++ b/tests/auto/declarative/visual/animation/loop/loop.qml
@@ -14,7 +14,7 @@ Rectangle {
back to 100, jumps to 200, and so on.
*/
x: SequentialAnimation {
- repeat: true
+ loops: Qt.Infinite
NumberAnimation { to: 100; duration: 1000 }
NumberAnimation { from: 200; to: 400; duration: 1000 }
}