aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/pointer/content/ScrollBar.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/pointer/content/ScrollBar.qml')
-rw-r--r--tests/manual/pointer/content/ScrollBar.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manual/pointer/content/ScrollBar.qml b/tests/manual/pointer/content/ScrollBar.qml
index 94d5ae47a7..ef18ceb98f 100644
--- a/tests/manual/pointer/content/ScrollBar.qml
+++ b/tests/manual/pointer/content/ScrollBar.qml
@@ -71,9 +71,9 @@ Rectangle {
id: tap
onTapped: {
if (knob.state === "horizontal")
- knob.x = pos.x - knob.width / 2
+ knob.x = position.x - knob.width / 2
else if (knob.state === "vertical")
- knob.y = pos.y - knob.height / 2
+ knob.y = position.y - knob.height / 2
}
}