File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
app/src/processing/app/ui Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -91,17 +91,17 @@ public class Toolkit {
9191 /** Command on Mac OS X, Ctrl on Windows and Linux */
9292 static final int SHORTCUT_KEY_MASK =
9393 awtToolkit .getMenuShortcutKeyMask ();
94-
95- /** Command-W on Mac OS X, Ctrl-W on Windows and Linux */
96- public static final KeyStroke WINDOW_CLOSE_KEYSTROKE =
97- KeyStroke .getKeyStroke ('W' , SHORTCUT_KEY_MASK );
9894 /** Command-Option on Mac OS X, Ctrl-Alt on Windows and Linux */
9995 static final int SHORTCUT_ALT_KEY_MASK =
10096 ActionEvent .ALT_MASK | SHORTCUT_KEY_MASK ;
10197 /** Command-Shift on Mac OS X, Ctrl-Shift on Windows and Linux */
10298 static final int SHORTCUT_SHIFT_KEY_MASK =
10399 ActionEvent .SHIFT_MASK | SHORTCUT_KEY_MASK ;
104100
101+ /** Command-W on Mac OS X, Ctrl-W on Windows and Linux */
102+ static public final KeyStroke WINDOW_CLOSE_KEYSTROKE =
103+ KeyStroke .getKeyStroke ('W' , SHORTCUT_KEY_MASK );
104+
105105
106106 /**
107107 * Standardized width for buttons. Mac OS X 10.3 wants 70 as its default,
You can’t perform that action at this time.
0 commit comments