aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickflickable/data/pressDelayWithLoader.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickflickable/data/pressDelayWithLoader.qml')
-rw-r--r--tests/auto/quick/qquickflickable/data/pressDelayWithLoader.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickflickable/data/pressDelayWithLoader.qml b/tests/auto/quick/qquickflickable/data/pressDelayWithLoader.qml
new file mode 100644
index 0000000000..7ef4e70c95
--- /dev/null
+++ b/tests/auto/quick/qquickflickable/data/pressDelayWithLoader.qml
@@ -0,0 +1,18 @@
+import QtQuick 2.0
+
+Loader {
+ id: loader
+
+ width: 300
+ height: 300
+
+ sourceComponent: Flickable {
+ pressDelay: 1000
+ contentWidth: loader.width
+ contentHeight: loader.height
+ MouseArea {
+ anchors.fill: parent
+ onPressed: loader.sourceComponent = null
+ }
+ }
+}