mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
Disallow box sorting if no boxes
This commit is contained in:
parent
a1c0db27c3
commit
cb353e0065
1 changed files with 2 additions and 0 deletions
|
@ -2458,6 +2458,8 @@ namespace PKHeX
|
|||
{
|
||||
if (tabBoxMulti.SelectedIndex != 0)
|
||||
return;
|
||||
if (!SAV.HasBox)
|
||||
return;
|
||||
if (ModifierKeys == (Keys.Alt | Keys.Shift))
|
||||
{
|
||||
if (DialogResult.Yes != Util.Prompt(MessageBoxButtons.YesNo, "Clear ALL Boxes?!"))
|
||||
|
|
Loading…
Reference in a new issue