From 112d109a6fcdede993da9c622a0280c301c72166 Mon Sep 17 00:00:00 2001 From: Salikh Gurgenidze Date: Sun, 23 Nov 2025 16:18:51 +0400 Subject: [PATCH] fix: red overlay --- UI/ItemButton.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/UI/ItemButton.lua b/UI/ItemButton.lua index f90cb6f..d728c1d 100644 --- a/UI/ItemButton.lua +++ b/UI/ItemButton.lua @@ -479,6 +479,11 @@ function Guda_ItemButton_SetItem(self, bagID, slotID, itemData, isBank, otherCha if SetItemButtonTextureVertexColor then SetItemButtonTextureVertexColor(self, 1.0, 1.0, 1.0) end + + -- Clear unusable overlay for empty slots ✅ FIX: Clear red overlay when item is sold + if self.unusableOverlay and self.unusableOverlay.Hide then + self.unusableOverlay:Hide() + end end -- Resize empty slot background to match icon size (slightly larger to ensure coverage)