diff options
author | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-02-11 20:44:13 (GMT) |
---|---|---|
committer | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-02-11 22:49:29 (GMT) |
commit | 6e0c76a209b87e306e48266962f5668237e63c62 (patch) | |
tree | be9d3fccad732ddde3a75f07178b47604baf327f /examples/declarative/border-image | |
parent | 5624c360505a11b9380d2d1e47b2b3477ccc229c (diff) | |
download | Qt-6e0c76a209b87e306e48266962f5668237e63c62.zip Qt-6e0c76a209b87e306e48266962f5668237e63c62.tar.gz Qt-6e0c76a209b87e306e48266962f5668237e63c62.tar.bz2 |
Removed "running: true" for animations used as propertyvaluesource
This attribution is not necessary anymore since 923710196d6d5...,
Reviewed-by: Michael Brasser
Diffstat (limited to 'examples/declarative/border-image')
-rw-r--r-- | examples/declarative/border-image/content/MyBorderImage.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/border-image/content/MyBorderImage.qml b/examples/declarative/border-image/content/MyBorderImage.qml index 9eb1270..a57acc7 100644 --- a/examples/declarative/border-image/content/MyBorderImage.qml +++ b/examples/declarative/border-image/content/MyBorderImage.qml @@ -18,13 +18,13 @@ Item { id: image; x: container.width / 2 - width / 2; y: container.height / 2 - height / 2 width: SequentialAnimation { - running: true; repeat: true + repeat: true NumberAnimation { from: container.minWidth; to: container.maxWidth; duration: 2000; easing: "easeInOutQuad"} NumberAnimation { from: container.maxWidth; to: container.minWidth; duration: 2000; easing: "easeInOutQuad" } } height: SequentialAnimation { - running: true; repeat: true + repeat: true NumberAnimation { from: container.minHeight; to: container.maxHeight; duration: 2000; easing: "easeInOutQuad"} NumberAnimation { from: container.maxHeight; to: container.minHeight; duration: 2000; easing: "easeInOutQuad" } } |