mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 22:10:21 +00:00
Update ContextMenuSAV.cs
This commit is contained in:
parent
4aeea9e956
commit
ea052fb6d1
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ public partial class ContextMenuSAV : UserControl
|
||||||
if (ctrl is null)
|
if (ctrl is null)
|
||||||
return;
|
return;
|
||||||
var info = GetSenderInfo(ctrl);
|
var info = GetSenderInfo(ctrl);
|
||||||
bool SlotFull = info.IsEmpty();
|
bool SlotFull = !info.IsEmpty();
|
||||||
bool Editable = info.CanWriteTo();
|
bool Editable = info.CanWriteTo();
|
||||||
bool legality = ModifierKeys == Keys.Control;
|
bool legality = ModifierKeys == Keys.Control;
|
||||||
ToggleItem(items, mnuSet, Editable);
|
ToggleItem(items, mnuSet, Editable);
|
||||||
|
|
Loading…
Reference in a new issue