Skip to content

Commit 31c883b

Browse files
committed
minor re-org
1 parent 6895a29 commit 31c883b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/src/processing/app/ui/Toolkit.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)