aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/pointer/singlePointHandlerProperties.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/pointer/singlePointHandlerProperties.qml')
-rw-r--r--tests/manual/pointer/singlePointHandlerProperties.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/manual/pointer/singlePointHandlerProperties.qml b/tests/manual/pointer/singlePointHandlerProperties.qml
index d5c35fff22..c2500770f0 100644
--- a/tests/manual/pointer/singlePointHandlerProperties.qml
+++ b/tests/manual/pointer/singlePointHandlerProperties.qml
@@ -69,7 +69,8 @@ Rectangle {
implicitHeight: label.implicitHeight
Text {
id: label
- text: 'id: ' + pointHandler.point.id.toString(16) + " uid: " + pointHandler.point.uniqueId.numericId +
+ text: 'seat: ' + pointHandler.point.device.seatName + '\ndevice: ' + pointHandler.point.device.name +
+ '\nid: ' + pointHandler.point.id.toString(16) + " uid: " + pointHandler.point.uniqueId.numericId +
'\npos: (' + pointHandler.point.position.x.toFixed(2) + ', ' + pointHandler.point.position.y.toFixed(2) + ')' +
'\nmodifiers: ' + pointHandler.point.modifiers.toString(16)
}