Karl-HeinzSchneider / WoW-DragonflightUI

World of Warcraft (classic) Addon to bring the new Retail UI to WoW Classic!
https://www.curseforge.com/wow/addons/dragonflight-ui-classic
MIT License
31 stars 13 forks source link

[BUG] Hard to see colour fading on spells on the action bar #234

Closed adam-tj closed 1 month ago

adam-tj commented 2 months ago

See hotkey R Indoors Dragonfly UI (Entangling roots spell not usable), hard to see image Indoors Default UI (Entangling roots spell not usable), easy to see image Outdoors Default UI image Outdoors Dragonflight UI image

Is the first picture with complete colour desaturating intentional?

Karl-HeinzSchneider commented 1 month ago

Kind of intentional, yes. But I'll look into it again, as the default one seems a bit nicer with some color left.

Karl-HeinzSchneider commented 1 month ago

The code was

 if not isUsable then
        mask:SetVertexColor(0.4, 0.4, 0.4, 1.0)      
        mask:SetDesaturated(true)
        ...

I changed the VertexColor back to mask:SetVertexColor(1.0, 1.0, 1.0, 1.0). This should make the button like default when the button is just not usable; out of range is still changed.