2
0

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:
Michael Ziminsky (Z) 2018-10-25 19:18:15 -07:00
parent ff50cdd45d
commit 3232f2b9a1

View File

@ -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 );
}