Skip to content

Commit c953e1f

Browse files
Added workaround for + on Mac as well.
1 parent addcd87 commit c953e1f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

app/src/main/java/com/oracle/javafx/scenebuilder/app/menubar/MenuBarController.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1342,6 +1342,11 @@ public void handleAdditionalZoomAccelerators(KeyEvent event) {
13421342
return;
13431343
}
13441344

1345+
if (EditorPlatform.IS_MAC && "+".equals(event.getText())) {
1346+
runActionController(zoomInController, event);
1347+
return;
1348+
}
1349+
13451350
if (event.isShiftDown()) {
13461351
handleArrowKeysForZoom(event);
13471352
} else {

0 commit comments

Comments
 (0)