ActionbarPlus

ActionbarPlus

78.7k Downloads

Click and highlight Texture does not clear

nfet opened this issue ยท 0 comments

commented

Describe the bug
Broke on v 1.0.10

Set to self:SetPushedTexture(emptyTexture) instead of self:SetPushedTexture(nil) (also for highlight texture). Retail does not allow nil on these methods.

See

function L:SetTextureAsEmpty()
    self:SetNormalTexture(emptyTexture)
    self:SetPushedTexture(nil)   <----
    self:SetHighlightTexture(nil) <----
    self:SetNormalIconAlphaAsEmpty()
    self:SetVertexColorNormal()
end