Bag slot background
Voxxel opened this issue ยท 7 comments
Color Settings / Display Background option doesn't hide the background texture anymore but instead it swaps to a different texture. Is there a way to make this option to functioning again? Before 10.0 it removed the slot texture and make the slots completely untextured (so it could be made plain transparent).
Hey guys, i just stumbled upon the exact same issue. Drove me nuts, so i dag into the source code. If you want, you can use this temporary fix, which yields the same results as the option used to do.
You have to edit the file item.lua @ bagnon/common/Wildpands/classes/item.lua (line 469) with a text editor.
Original function:
function Item:GetEmptyItemIcon()
return Addon.sets.emptySlots and 'Interface/PaperDoll/UI-Backpack-EmptySlot'
end
Updated function: (crucial part is the or '' at the end)
function Item:GetEmptyItemIcon()
return Addon.sets.emptySlots and 'Interface/PaperDoll/UI-Backpack-EmptySlot' or ''
end
This should give you back empty slot backgrounds. Either restart wow or type /reload in chat.
Cheers
For me the location of the file needing editing was
C:\Program Files (x86)\World of Warcraft_retail_\Interface\AddOns\BagBrother\addons\core\classes\item.lua
Make sure to change
'Interface/PaperDoll/UI-Backpack-EmptySlot'
to
'Interface/PaperDoll/UI-Backpack-EmptySlot' or ''
Credit to xozion for finding this!