Don't allow Ctrl+mouse wheel zooming in the map

Still allow scrolling using just the mouse wheel.
This commit is contained in:
Vadim Zeitlin
2025-08-26 19:47:01 +02:00
parent 5089cbc1ff
commit 246f8a6505
+9
View File
@@ -982,6 +982,15 @@ public:
HandleMouseClick(event);
});
Bind(wxEVT_MOUSEWHEEL, [this](wxMouseEvent& event) {
// Don't allow zooming into the map.
if ( event.ControlDown() )
return;
// But do allow to scroll in it using the wheel.
event.Skip();
});
Bind(wxEVT_MOUSE_CAPTURE_LOST, [this](wxMouseCaptureLostEvent& WXUNUSED(event)) {
DoStopDragging();
});