Skip to content

Commit 0f3292c

Browse files
committed
Fix delete tab shortcut
1 parent 199842f commit 0f3292c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/src/processing/app/ui/EditorHeader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ public void actionPerformed(ActionEvent e) {
518518
}
519519
};
520520
mapKey = "editor.header.delete";
521-
keyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_D, Toolkit.SHORTCUT_ALT_KEY_MASK);
521+
keyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_D, Toolkit.SHORTCUT_SHIFT_KEY_MASK);
522522
inputMap.put(keyStroke, mapKey);
523523
actionMap.put(mapKey, action);
524524
item.addActionListener(action);

0 commit comments

Comments
 (0)