summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-11-04 04:46:11 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-11-04 04:46:11 (GMT)
commit3ba15a237e8d38e471026e4a0f49a411bd4ada41 (patch)
tree45bcc091b252f1c4a4fe5baae97983b2a5182c2f /examples
parentedcdcc5a27ce853b03e91e328b5eb4764c92eda0 (diff)
parenta5e66c8c02db19a26fcb8378a1d61302ad2d2c5f (diff)
downloadQt-3ba15a237e8d38e471026e4a0f49a411bd4ada41.zip
Qt-3ba15a237e8d38e471026e4a0f49a411bd4ada41.tar.gz
Qt-3ba15a237e8d38e471026e4a0f49a411bd4ada41.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
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