FSchumacher commented on code in PR #5792: URL: https://github.com/apache/jmeter/pull/5792#discussion_r1174552638
########## src/core/src/main/java/org/apache/jmeter/gui/action/KeyStrokes.java: ########## @@ -72,6 +72,7 @@ private static int getMenuShortcutKeyMask() { public static final KeyStroke OPEN = KeyStroke.getKeyStroke(KeyEvent.VK_O, CONTROL_MASK); public static final KeyStroke EXIT = KeyStroke.getKeyStroke(KeyEvent.VK_Q, CONTROL_MASK); public static final KeyStroke ACTION_START = KeyStroke.getKeyStroke(KeyEvent.VK_R, CONTROL_MASK); + public static final KeyStroke ACTION_START_NO_PAUSE = KeyStroke.getKeyStroke(KeyEvent.VK_N, CONTROL_MASK | InputEvent.SHIFT_DOWN_MASK); Review Comment: `Ctrl`+`Shift`+`N` feels a bit like a command to create something *new*. But as the menu shortcut uses `n` already, this seems to be a natural choice here. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@jmeter.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org