Java Client: Change hotkey modifier from CTRL+META to ALT+META
Windows uses CTRL+META+P already, preventing it from working for the app
This commit is contained in:
parent
ff50cdd45d
commit
3232f2b9a1
@ -10,5 +10,5 @@ import javax.swing.*;
|
||||
*/
|
||||
public final class MPGuiConstants {
|
||||
|
||||
public static final KeyStroke ui_hotkey = KeyStroke.getKeyStroke( KeyEvent.VK_P, InputEvent.CTRL_DOWN_MASK | InputEvent.META_DOWN_MASK );
|
||||
public static final KeyStroke ui_hotkey = KeyStroke.getKeyStroke( KeyEvent.VK_P, InputEvent.ALT_DOWN_MASK | InputEvent.META_DOWN_MASK );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user