Fix hotkey exit (Q) prompt

This commit is contained in:
Kaphotics 2016-04-12 18:40:37 -07:00
parent 9f528e18a0
commit e590aaf0d4

View file

@ -280,7 +280,7 @@ namespace PKHeX
}
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();
}