aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickflickable/data/hide.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickflickable/data/hide.qml')
-rw-r--r--tests/auto/quick/qquickflickable/data/hide.qml13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickflickable/data/hide.qml b/tests/auto/quick/qquickflickable/data/hide.qml
new file mode 100644
index 0000000000..ab520549e2
--- /dev/null
+++ b/tests/auto/quick/qquickflickable/data/hide.qml
@@ -0,0 +1,13 @@
+import QtQuick 2.0
+
+Flickable {
+ id: flickable
+ width: 200; height: 200
+ contentWidth: 400; contentHeight: 400
+
+ MouseArea {
+ objectName: "mouseArea"
+ width: 400; height: 400
+ onDoubleClicked: flickable.visible = false
+ }
+}