We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18e0f15 commit 05f6d1dCopy full SHA for 05f6d1d
1 file changed
editor/src/main/java/com/jvn/editor/ui/actioneditor/PuppeteerWindow.java
@@ -1323,8 +1323,10 @@ private HBox buildToolbarCommandBar() {
1323
});
1324
1325
MenuItem miUndo = new MenuItem("Undo");
1326
+ miUndo.setAccelerator(new KeyCodeCombination(KeyCode.Z, KeyCombination.SHORTCUT_DOWN));
1327
miUndo.setOnAction(e -> executeUndo());
1328
MenuItem miRedo = new MenuItem("Redo");
1329
+ miRedo.setAccelerator(new KeyCodeCombination(KeyCode.Z, KeyCombination.SHORTCUT_DOWN, KeyCombination.SHIFT_DOWN));
1330
miRedo.setOnAction(e -> executeRedo());
1331
MenuItem miAddKeyframe = new MenuItem("Add Keyframe at Playhead");
1332
miAddKeyframe.setOnAction(e -> timelinePanel.addKeyframeAtPlayhead());
0 commit comments