-
Type:
Bug
-
Status: Closed
-
Priority:
P1: Critical
-
Resolution: Done
-
Affects Version/s: 5.12.0
-
Fix Version/s: 5.12.5, 5.13.1, 5.14.0 Alpha
-
Component/s: Quick: Mouse Touch and Tablet input
-
Labels:None
-
Commits:9b01e2e5d4b38533f02ba9ba907505e8c341cd0a (qt/qtdeclarative/5.12)
The following example always prints out "qml: QPointF(0, 0)", no matter where you tap.
Window {
width: 1280
height: 720
visible: true
Rectangle {
anchors.fill: parent
TapHandler {
onTapped: print(point.position)
}
}
}