Skip to content

Commit

Permalink
Added workaround for + on Mac as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver-Loeffler committed Mar 30, 2023
1 parent addcd87 commit c953e1f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1342,6 +1342,11 @@ public void handleAdditionalZoomAccelerators(KeyEvent event) {
return;
}

if (EditorPlatform.IS_MAC && "+".equals(event.getText())) {
runActionController(zoomInController, event);
return;
}

if (event.isShiftDown()) {
handleArrowKeysForZoom(event);
} else {
Expand Down

0 comments on commit c953e1f

Please sign in to comment.