From e590aaf0d49560fe7347f8c87bf81cea152f80ab Mon Sep 17 00:00:00 2001 From: Kaphotics Date: Tue, 12 Apr 2016 18:40:37 -0700 Subject: [PATCH] Fix hotkey exit (Q) prompt --- PKX/f1-Main.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKX/f1-Main.cs b/PKX/f1-Main.cs index eeafd6381..f6b4ed951 100644 --- a/PKX/f1-Main.cs +++ b/PKX/f1-Main.cs @@ -280,7 +280,7 @@ private void mainMenuSave(object sender, EventArgs e) } private void mainMenuExit(object sender, EventArgs e) { - if (ModifierKeys == (Keys.Control | Keys.E)) // Hotkey Triggered + if (ModifierKeys == (Keys.Control | Keys.Q)) // Hotkey Triggered if (DialogResult.Yes != Util.Prompt(MessageBoxButtons.YesNo, "Quit PKHeX?")) return; Close(); }