Fix wallpaper resource display fetch

CB_BG is the background selection, not the box.
https://twitter.com/yajegamer/status/1120717928322748420
This commit is contained in:
Kurt
2019-04-23 18:37:51 -07:00
parent 0bd6caf927
commit a220970124

View File

@@ -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)