diff --git a/src/MissionEditor/MissionEditor.qml b/src/MissionEditor/MissionEditor.qml index 822122e2d325ff339cf6562abdafc728ab2d21c4..0b5c58735f2b6858632c7604908d77fbd0119bc5 100644 --- a/src/MissionEditor/MissionEditor.qml +++ b/src/MissionEditor/MissionEditor.qml @@ -359,6 +359,14 @@ QGCView { opacity: _rightPanelOpacity z: QGroundControl.zOrderTopMost + MouseArea { + // This MouseArea prevents the Map below it from getting Mouse events. Without this + // things like mousewheel will scroll the Flickable and then scroll the map as well. + anchors.fill: parent + preventStealing: true + onWheel: wheel.accepted = true + } + ListView { anchors.fill: parent spacing: _margin / 2