Skip to content

Commit

Permalink
Fix #9568 fixed selection with Alt + Mouse (#9640) (#9645)
Browse files Browse the repository at this point in the history
  • Loading branch information
MV88 authored Oct 23, 2023
1 parent 40e364d commit e9d8bd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/client/components/map/openlayers/BoxSelectionSupport.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ const BoxSelectionSupport = (props) => {
onBoxEnd({
boxExtent: dragBox.getGeometry().getExtent(),
modifiers: {
ctrl: event.mapBrowserEvent.pointerEvent.ctrlKey,
metaKey: event.mapBrowserEvent.pointerEvent.metaKey // MAC OS
ctrl: event.mapBrowserEvent.originalEvent.ctrlKey,
metaKey: event.mapBrowserEvent.originalEvent.metaKey // MAC OS
}
});
});
Expand Down

0 comments on commit e9d8bd0

Please sign in to comment.