summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tvtennis
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/tvtennis')
-rw-r--r--examples/declarative/tvtennis/tvtennis.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/tvtennis/tvtennis.qml b/examples/declarative/tvtennis/tvtennis.qml
index f6a3c97..4bd5319 100644
--- a/examples/declarative/tvtennis/tvtennis.qml
+++ b/examples/declarative/tvtennis/tvtennis.qml
@@ -17,7 +17,7 @@ Rectangle {
// Move the ball to the right and back to the left repeatedly
x: SequentialAnimation {
- running: true; repeat: true
+ repeat: true
NumberAnimation { to: page.width - 40; duration: 2000 }
ScriptAction { script: Qt.playSound('paddle.wav') }
PropertyAction { target: ball; property: "direction"; value: "left" }