Several bug fixes, visual updates on m+ panel, fixed m+ chart again, more updates for Breakdown Wndow

This commit is contained in:
Tercio Jose
2024-08-17 00:03:03 -03:00
committed by andrew6180
parent dc2758ccbe
commit 97e83c95e3
17 changed files with 122 additions and 57 deletions
+6 -4
View File
@@ -1385,10 +1385,12 @@
if (frame.GetActor) then
local actor = frame:GetActor()
if (actor) then
local class = actor:Class()
local classColor = RAID_CLASS_COLORS[class]
GameCooltip:SetBackdrop(1, backdrop, classColor, borderColor)
GameCooltip:SetColor(1, 0, 0, 0, 0.7)
local class = actor.classe
if (class) then
local classColor = RAID_CLASS_COLORS[class]
GameCooltip:SetBackdrop(1, backdrop, classColor, borderColor)
GameCooltip:SetColor(1, 0, 0, 0, 0.7)
end
end
end