diff options
Diffstat (limited to 'tests/auto/declarative/qmlgraphicsflickable/data/flickable02.qml')
-rw-r--r-- | tests/auto/declarative/qmlgraphicsflickable/data/flickable02.qml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmlgraphicsflickable/data/flickable02.qml b/tests/auto/declarative/qmlgraphicsflickable/data/flickable02.qml new file mode 100644 index 0000000..3e08359 --- /dev/null +++ b/tests/auto/declarative/qmlgraphicsflickable/data/flickable02.qml @@ -0,0 +1,14 @@ +import Qt 4.6 + +Flickable { + width: 100; height: 100 + viewportWidth: row.width; viewportHeight: row.height + + Row { + id: row + Repeater { + model: 4 + Rectangle { width: 200; height: 300; color: "blue" } + } + } +} |