From fa78154df780a384bedb8194fdb522a8b91ce3f5 Mon Sep 17 00:00:00 2001 From: Kurt Date: Wed, 29 Nov 2017 08:38:32 -0800 Subject: [PATCH] Save current facility on save action unsaved combobox choices only are saved when the current index is changed, need to save when the form is closed (saved). --- PKHeX.WinForms/Subforms/Save Editors/Gen7/SAV_FestivalPlaza.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PKHeX.WinForms/Subforms/Save Editors/Gen7/SAV_FestivalPlaza.cs b/PKHeX.WinForms/Subforms/Save Editors/Gen7/SAV_FestivalPlaza.cs index 1aae354ff..b260f8dfa 100644 --- a/PKHeX.WinForms/Subforms/Save Editors/Gen7/SAV_FestivalPlaza.cs +++ b/PKHeX.WinForms/Subforms/Save Editors/Gen7/SAV_FestivalPlaza.cs @@ -244,6 +244,7 @@ private void Save() for (int i = 1; i < CLB_Reward.Items.Count; i++) SAV.SetFestaPrizeReceived(i - 1, r[(int)CLB_Reward.GetItemCheckState(i)]); + SaveFacility(); foreach (FestaFacility facility in f) facility.CopyTo(SAV);