summaryrefslogtreecommitdiff
path: root/tests/manual/mapobjects_tester/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/mapobjects_tester/main.qml')
-rw-r--r--tests/manual/mapobjects_tester/main.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manual/mapobjects_tester/main.qml b/tests/manual/mapobjects_tester/main.qml
index 1e758ace..3651a382 100644
--- a/tests/manual/mapobjects_tester/main.qml
+++ b/tests/manual/mapobjects_tester/main.qml
@@ -49,7 +49,7 @@ Window {
Shortcut {
sequence: "Ctrl+R"
onActivated: {
- rotation = 57
+ rotation += 30
}
}
@@ -107,7 +107,7 @@ Window {
MouseArea {
anchors.fill: parent
- onClicked: {
+ onClicked: (mouse) => {
mouse.accepted = false
var crd = map.toCoordinate(Qt.point(mouse.x, mouse.y))
var s = crd.toString(0)