mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-07-02 04:10:46 -05:00
parent
3e052987e2
commit
f8a2bb3229
|
|
@ -177,7 +177,9 @@ private void ChangeCustomBool(object sender, EventArgs e)
|
|||
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 New Issue
Block a user