We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent addcd87 commit c953e1fCopy full SHA for c953e1f
app/src/main/java/com/oracle/javafx/scenebuilder/app/menubar/MenuBarController.java
@@ -1342,6 +1342,11 @@ public void handleAdditionalZoomAccelerators(KeyEvent event) {
1342
return;
1343
}
1344
1345
+ if (EditorPlatform.IS_MAC && "+".equals(event.getText())) {
1346
+ runActionController(zoomInController, event);
1347
+ return;
1348
+ }
1349
+
1350
if (event.isShiftDown()) {
1351
handleArrowKeysForZoom(event);
1352
} else {
0 commit comments