From 3232f2b9a13b7212cf3691d032bfb5687fc0ea0d Mon Sep 17 00:00:00 2001 From: "Michael Ziminsky (Z)" Date: Thu, 25 Oct 2018 19:18:15 -0700 Subject: [PATCH] Java Client: Change hotkey modifier from CTRL+META to ALT+META Windows uses CTRL+META+P already, preventing it from working for the app --- .../main/java/com/lyndir/masterpassword/gui/MPGuiConstants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform-independent/java/gui/src/main/java/com/lyndir/masterpassword/gui/MPGuiConstants.java b/platform-independent/java/gui/src/main/java/com/lyndir/masterpassword/gui/MPGuiConstants.java index 54b48735..09ba0678 100644 --- a/platform-independent/java/gui/src/main/java/com/lyndir/masterpassword/gui/MPGuiConstants.java +++ b/platform-independent/java/gui/src/main/java/com/lyndir/masterpassword/gui/MPGuiConstants.java @@ -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 ); }