summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZeno Albisser <zeno.albisser@nokia.com>2010-08-18 11:38:01 -0400
committerZeno Albisser <zeno.albisser@nokia.com>2010-08-18 11:38:01 -0400
commitf8511334a4b129fbc1ec5ee99dd56b698ea57f94 (patch)
treeb6570fc1dc433ed881948020be30bcd162c5bc23
parentec0d23d20ef959beade4e470f3ebefa71adf73ab (diff)
fix bug in strokelist: swallow taps that are not directed to a button
-rw-r--r--multilayer-dashboard/StrokeList.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/multilayer-dashboard/StrokeList.qml b/multilayer-dashboard/StrokeList.qml
index 4881fa8..968202f 100644
--- a/multilayer-dashboard/StrokeList.qml
+++ b/multilayer-dashboard/StrokeList.qml
@@ -30,6 +30,12 @@ Rectangle {
onHeightChanged: y = 0
+ GestureArea {
+ anchors.fill: parent
+ Tap { //swallow a tap
+ }
+ }
+
Repeater {
model: [ "apple", "orange", "pineapple", "coconut", "foo", "bar", "baz", "zealot" ]