aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/pointerhandlers
diff options
context:
space:
mode:
authorJan Arve Saether <jan-arve.saether@qt.io>2017-02-24 16:42:47 +0100
committerShawn Rutledge <shawn.rutledge@qt.io>2017-05-23 05:52:18 +0000
commit5d4f488bf30f5650051d6cc226a75dbd17cd9a70 (patch)
tree827f71d5ad7eee909faa60133d0d521aa0b56958 /tests/auto/quick/pointerhandlers
parent057fc4b5b037284ffe299a28725fcf59c7ac066f (diff)
Move properties into grouped "point" property
Change-Id: I80000110a2e0ca69210322a0fcc587d86158358e Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'tests/auto/quick/pointerhandlers')
-rw-r--r--tests/auto/quick/pointerhandlers/qquicktaphandler/data/Button.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/quick/pointerhandlers/qquicktaphandler/data/Button.qml b/tests/auto/quick/pointerhandlers/qquicktaphandler/data/Button.qml
index ead86e142b..6203a6769d 100644
--- a/tests/auto/quick/pointerhandlers/qquicktaphandler/data/Button.qml
+++ b/tests/auto/quick/pointerhandlers/qquicktaphandler/data/Button.qml
@@ -91,8 +91,8 @@ Rectangle {
color: "transparent"
width: radius * 2
height: radius * 2
- x: tap.scenePressPos.x - radius
- y: tap.scenePressPos.y - radius
+ x: tap.point.scenePressPosition.x - radius
+ y: tap.point.scenePressPosition.y - radius
opacity: 0.25
Component.onCompleted: parent = root.parent
}