diff --git a/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs b/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs index 27855990b..17c40d90d 100644 --- a/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs +++ b/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs @@ -228,11 +228,11 @@ public void populateFields(PKM pk, bool focus = true) Label_HatchCounter.Visible = CHK_IsEgg.Checked && pkm.Format > 1; Label_Friendship.Visible = !CHK_IsEgg.Checked && pkm.Format > 1; - // Set the Preview Box - UpdatePreviewSprite(this, null); setMarkings(); updateLegality(); lastData = preparePKM()?.Data; + // Refresh the Preview Box + UpdatePreviewSprite?.Invoke(this, null); } public void updateLegality(LegalityAnalysis la = null, bool skipMoveRepop = false) {