mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
parent
3e052987e2
commit
f8a2bb3229
1 changed files with 3 additions and 1 deletions
|
@ -177,7 +177,9 @@ namespace PKHeX.WinForms
|
|||
if (editing)
|
||||
return;
|
||||
editing = true;
|
||||
if (FlagDict.TryGetValue((int)NUD_Flag.Value, out var chk))
|
||||
var index = (int) NUD_Flag.Value;
|
||||
Editor.Flags[index] = c_CustomFlag.Checked;
|
||||
if (FlagDict.TryGetValue(index, out var chk))
|
||||
chk.Checked = c_CustomFlag.Checked;
|
||||
editing = false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue