mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
Fix hotkey exit (Q) prompt
This commit is contained in:
parent
9f528e18a0
commit
e590aaf0d4
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue