
[Bug] Calss Color Text Color not changing for alts
katur239 opened this issue ยท 3 comments
Describe the bug
Using the 'Use Class Color for Text' option will only change the color when it's set. other classes will still have that color when they log in until you re set the option.
I fixed it by changing the GetColor() function
function XIVBar:GetColor(name)
local profile = self.db.profile.color
local r, g, b, a = profile[name].r, profile[name].g, profile[name].b, profile[name].a
if name == 'normal' and profile.useTextCC then
r, g, b, _ = self:GetClassColors()
end
return r, g, b, a
end
Heya,
Happy new year to you !
Werid behavior, I'm back from holidays and will look into that issue and keep you updated, thank you !
Ok so I went a bit further with the implementation of the bar color that should also change with the options returning with #54 (Bar color and Bar opacity).
That fix will be operational in the next release coming soon.