summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/animation
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2010-05-05 04:32:45 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2010-05-05 04:37:52 (GMT)
commit846210c6381827396868d15cdbb6d42daabda147 (patch)
treeff3003b0fa316258cae7ce43bbd7aff74f4ebb71 /tests/auto/declarative/qmlvisual/animation
parent9719866c686805d69b0026f555c97594e09c836f (diff)
downloadQt-846210c6381827396868d15cdbb6d42daabda147.zip
Qt-846210c6381827396868d15cdbb6d42daabda147.tar.gz
Qt-846210c6381827396868d15cdbb6d42daabda147.tar.bz2
Don't start valuesource animations until all component objects have been completed.
Task-number: QTBUG-9413
Diffstat (limited to 'tests/auto/declarative/qmlvisual/animation')
-rw-r--r--tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml
index d82c6df..cc9a639 100644
--- a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml
+++ b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml
@@ -16,7 +16,7 @@ Rectangle {
id: img
source: "pics/qtlogo.png"
x: 60-width/2
- y: 100
+ y: 200-img.height
SequentialAnimation on y {
loops: Animation.Infinite
NumberAnimation {
@@ -24,7 +24,7 @@ Rectangle {
easing.type: "InOutQuad"
}
NumberAnimation {
- to: 100
+ to: 200-img.height
easing.type: "OutBounce"
duration: 2000
}