summaryrefslogtreecommitdiff
path: root/examples/location/minimal_map/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/location/minimal_map/main.qml')
-rw-r--r--examples/location/minimal_map/main.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/location/minimal_map/main.qml b/examples/location/minimal_map/main.qml
index 7093ceb6..70f30d5a 100644
--- a/examples/location/minimal_map/main.qml
+++ b/examples/location/minimal_map/main.qml
@@ -43,9 +43,10 @@ Window {
}
WheelHandler {
id: wheel
- // workaround for QTBUG-87646 / QTBUG-112394:
+ // workaround for QTBUG-87646 / QTBUG-112394 / QTBUG-112432:
// Magic Mouse pretends to be a trackpad but doesn't work with PinchHandler
- acceptedDevices: Qt.platform.pluginName === "cocoa"
+ // and we don't yet distinguish mice and trackpads on Wayland either
+ acceptedDevices: Qt.platform.pluginName === "cocoa" || Qt.platform.pluginName === "wayland"
? PointerDevice.Mouse | PointerDevice.TouchPad
: PointerDevice.Mouse
rotationScale: 1/120