From a2209701242c741b1b821c8d1ff2e8db55aad65d Mon Sep 17 00:00:00 2001 From: Kurt Date: Tue, 23 Apr 2019 18:37:51 -0700 Subject: [PATCH] Fix wallpaper resource display fetch CB_BG is the background selection, not the box. https://twitter.com/yajegamer/status/1120717928322748420 --- PKHeX.WinForms/Subforms/Save Editors/Gen6/SAV_BoxLayout.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.WinForms/Subforms/Save Editors/Gen6/SAV_BoxLayout.cs b/PKHeX.WinForms/Subforms/Save Editors/Gen6/SAV_BoxLayout.cs index a3da619fd..05a702360 100644 --- a/PKHeX.WinForms/Subforms/Save Editors/Gen6/SAV_BoxLayout.cs +++ b/PKHeX.WinForms/Subforms/Save Editors/Gen6/SAV_BoxLayout.cs @@ -146,7 +146,7 @@ private void ChangeBoxBackground(object sender, EventArgs e) if (!editing) SAV.SetBoxWallpaper(LB_BoxSelect.SelectedIndex, CB_BG.SelectedIndex); - PAN_BG.BackgroundImage = SAV.WallpaperImage(CB_BG.SelectedIndex); + PAN_BG.BackgroundImage = SAV.WallpaperImage(LB_BoxSelect.SelectedIndex); } private bool MoveItem(int direction)