mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-12 18:55:35 -05:00
Fix hotkey exit (Q) prompt
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user