mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-13 19:56:01 -05:00
fix designer deletion of sav editor control
custom constructor parameters aren't expected, needs a default without optional (no usages were using a sav provided anyway)
This commit is contained in:
@@ -43,9 +43,9 @@ public void ReloadSlots()
|
||||
ResetNonBoxSlots();
|
||||
}
|
||||
|
||||
public SAVEditor(SaveFile sav = null)
|
||||
public SAVEditor()
|
||||
{
|
||||
var z = Task.Run(() => sav ?? SaveUtil.GetBlankSAV(GameVersion.US, "PKHeX"));
|
||||
var z = Task.Run(() => SaveUtil.GetBlankSAV(GameVersion.US, "PKHeX"));
|
||||
InitializeComponent();
|
||||
var SupplementarySlots = new[]
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user