summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-11-04 04:34:22 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-11-04 04:34:22 (GMT)
commit69d6a95a4c12bacb700f3d7ccc9188d3cc22c8ae (patch)
tree4d795e5ce698465683c59180745c474c5339afc4 /examples
parentd11f0b71ba8cae27aafc70fedf027f20180837e2 (diff)
downloadQt-69d6a95a4c12bacb700f3d7ccc9188d3cc22c8ae.zip
Qt-69d6a95a4c12bacb700f3d7ccc9188d3cc22c8ae.tar.gz
Qt-69d6a95a4c12bacb700f3d7ccc9188d3cc22c8ae.tar.bz2
more autotests
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/animations/color-animation.qml5
1 files changed, 1 insertions, 4 deletions
diff --git a/examples/declarative/animations/color-animation.qml b/examples/declarative/animations/color-animation.qml
index edb0659..54608c7 100644
--- a/examples/declarative/animations/color-animation.qml
+++ b/examples/declarative/animations/color-animation.qml
@@ -31,10 +31,7 @@ Item {
Item {
width: parent.width; height: 2 * parent.height
transformOrigin: Item.Center
- rotation: SequentialAnimation {
- running: true; repeat: true
- NumberAnimation { from: 0; to: 360; duration: 10000 }
- }
+ rotation: NumberAnimation { from: 0; to: 360; duration: 10000; running: true; repeat: true }
Image {
source: "images/sun.png"; y: 10; anchors.horizontalCenter: parent.horizontalCenter
transformOrigin: Item.Center; rotation: -3 * parent.rotation