aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/animation/behaviors/tvtennis.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/animation/behaviors/tvtennis.qml')
-rw-r--r--examples/quick/animation/behaviors/tvtennis.qml9
1 files changed, 8 insertions, 1 deletions
diff --git a/examples/quick/animation/behaviors/tvtennis.qml b/examples/quick/animation/behaviors/tvtennis.qml
index 89d912777a..261f603de6 100644
--- a/examples/quick/animation/behaviors/tvtennis.qml
+++ b/examples/quick/animation/behaviors/tvtennis.qml
@@ -116,6 +116,13 @@ Rectangle {
Rectangle { color: "#1e1b18"; x: page.width/2+50; y: 10; width: 20; height: 40 }
Repeater {
model: page.height / 20
- Rectangle { color: "#328930"; x: page.width/2-5; y: index * 20; width: 10; height: 10 }
+ Rectangle {
+ required property int index
+ color: "#328930"
+ x: page.width / 2 - 5
+ y: index * 20
+ width: 10
+ height: 10
+ }
}
}