aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/touchinteraction/flickable/corkboards.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/touchinteraction/flickable/corkboards.qml')
-rw-r--r--examples/quick/touchinteraction/flickable/corkboards.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/quick/touchinteraction/flickable/corkboards.qml b/examples/quick/touchinteraction/flickable/corkboards.qml
index afb5dd309c..4825053f3f 100644
--- a/examples/quick/touchinteraction/flickable/corkboards.qml
+++ b/examples/quick/touchinteraction/flickable/corkboards.qml
@@ -92,6 +92,8 @@ Rectangle {
orientation: ListView.Horizontal
snapMode: ListView.SnapOneItem
model: list
- delegate: Panel { }
+ delegate: Panel {
+ horizontalVelocity: flickable.horizontalVelocity
+ }
}
}