WoW Classic Cataclysm: Light-Green Textures on Skinned Buttons - ClearTexture value
aLanaMaunz opened this issue · 0 comments
Heya,
I'm not sure what exactly changed in the WoW Cataclysm client, but for the past 1-2 days, many skinned elements are displaying light-green textures. The issue is inconsistent—sometimes the textures appear correctly for multiple /reloads, while other times they do not. This makes troubleshooting quite difficult.
After investigating your code (and checking numerous other addons), I found that for retail, the ClearTexture is handled differently. Instead of being set to "", it is set to 0, which resolves all the texture issues I encountered across all skins.
The relevant line in Skins.lua (line 60):
Changing:
ClearTexture = S.Retail and 0 or '',
To:
ClearTexture = 0,
for testing purposes fixes the broken textures.
I hope this helps! Let me know if you need any additional details. Thanks for this great addon! :)