diff --git a/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs b/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs index e04d3fd64..856723911 100644 --- a/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs +++ b/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs @@ -4,7 +4,6 @@ using System.Drawing; using System.IO; using System.Linq; -using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; using PKHeX.Core; @@ -48,7 +47,7 @@ public void MouseEnter(object sender, EventArgs e) if (pb.Image == null) return; OriginalBackground = pb.BackgroundImage; - pb.BackgroundImage = CurrentBackground = Resources.slotHover; + pb.BackgroundImage = CurrentBackground = pb.BackgroundImage == null ? Resources.slotHover : ImageUtil.LayerImage(pb.BackgroundImage, Resources.slotHover, 0, 0, 1); if (!DragActive) SetCursor(Cursors.Hand, sender); } diff --git a/PKHeX.WinForms/Resources/img/box/slotHover.png b/PKHeX.WinForms/Resources/img/box/slotHover.png index 7c3f943b2..dd03d46c4 100644 Binary files a/PKHeX.WinForms/Resources/img/box/slotHover.png and b/PKHeX.WinForms/Resources/img/box/slotHover.png differ