summaryrefslogtreecommitdiffstats
path: root/examples/declarative/fonts
diff options
context:
space:
mode:
authorLeonardo Sobral Cunha <leo.cunha@nokia.com>2010-02-11 20:44:13 (GMT)
committerLeonardo Sobral Cunha <leo.cunha@nokia.com>2010-02-11 22:49:29 (GMT)
commit6e0c76a209b87e306e48266962f5668237e63c62 (patch)
treebe9d3fccad732ddde3a75f07178b47604baf327f /examples/declarative/fonts
parent5624c360505a11b9380d2d1e47b2b3477ccc229c (diff)
downloadQt-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/fonts')
-rw-r--r--examples/declarative/fonts/banner.qml2
-rw-r--r--examples/declarative/fonts/hello.qml4
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/declarative/fonts/banner.qml b/examples/declarative/fonts/banner.qml
index ece481b..00b8660 100644
--- a/examples/declarative/fonts/banner.qml
+++ b/examples/declarative/fonts/banner.qml
@@ -10,7 +10,7 @@ Rectangle {
Row {
y: -screen.height / 4.5
- x: NumberAnimation { from: 0; to: -text.width; duration: 6000; running: true; repeat: true }
+ x: NumberAnimation { from: 0; to: -text.width; duration: 6000; repeat: true }
Text { id: text; font.pixelSize: screen.pixelSize; color: screen.textColor; text: screen.text }
Text { font.pixelSize: screen.pixelSize; color: screen.textColor; text: screen.text }
Text { font.pixelSize: screen.pixelSize; color: screen.textColor; text: screen.text }
diff --git a/examples/declarative/fonts/hello.qml b/examples/declarative/fonts/hello.qml
index 6aef3e6..c682477 100644
--- a/examples/declarative/fonts/hello.qml
+++ b/examples/declarative/fonts/hello.qml
@@ -10,7 +10,7 @@ Rectangle {
text: "Hello world!"; font.pixelSize: 60
font.letterSpacing: SequentialAnimation {
- repeat: true; running: true
+ repeat: true;
NumberAnimation { from: 100; to: 300; easing: "easeInQuad"; duration: 3000 }
ScriptAction { script: {
container.y = (screen.height / 4) + (Math.random() * screen.height / 2)
@@ -18,7 +18,7 @@ Rectangle {
} }
}
opacity: SequentialAnimation {
- repeat: true; running: true
+ repeat: true;
NumberAnimation { from: 1; to: 0; duration: 2600 }
PauseAnimation { duration: 400 }
}