aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@qt.io>2017-11-29 08:39:45 +0100
committerShawn Rutledge <shawn.rutledge@qt.io>2017-12-02 10:45:36 +0000
commite181ff92fff4542cf14d0f997d3a9a9c7c763aba (patch)
tree259bc31b1e57282fa82c4e53138d58f700e56d32 /tests/manual
parent430c14fb91bd46510cc2895c343358872f809889 (diff)
TapHandler manual test: remove console.log with tapped button
It's currently not possible to see which button was tapped, in JavaScript. 8dc02aab72a714b5195ccc641fbfb534c3ae9e98 broke it. Task-number: QTBUG-64847 Change-Id: I1020a8fa5732230d579ee7785e51b0e297df71b0 Reviewed-by: Jan Arve Sæther <jan-arve.saether@qt.io>
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/pointer/tapHandler.qml1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/manual/pointer/tapHandler.qml b/tests/manual/pointer/tapHandler.qml
index 2141f09713..94777c268c 100644
--- a/tests/manual/pointer/tapHandler.qml
+++ b/tests/manual/pointer/tapHandler.qml
@@ -55,7 +55,6 @@ Item {
borderBlink.start()
}
onTapped: { // 'point' is an implicit parameter referencing to a QQuickEventPoint instance
- console.log("tapped @ " + point.pos + " button(s) " + point.event.button + " tapCount " + tapCount)
if (tapCount > 1) {
tapCountLabel.text = tapCount
flashAnimation.start()