Quantcast

Recolor the castbar icon instead of the backdrop

Adrian L Lange [12-27-09 - 02:43]
Recolor the castbar icon instead of the backdrop
- The blue color fucked over the backdrop looks
Filename
oUF_P3lim.lua
diff --git a/oUF_P3lim.lua b/oUF_P3lim.lua
index ccdf3a3..941518f 100644
--- a/oUF_P3lim.lua
+++ b/oUF_P3lim.lua
@@ -87,9 +87,9 @@ end
 local function castIcon(self, event, unit)
 	local castbar = self.Castbar
 	if(castbar.interrupt) then
-		castbar.Button:SetBackdropColor(0, 0.9, 1)
+		castbar.icon:SetVertexColor(1, 0, 0)
 	else
-		castbar.Button:SetBackdropColor(0, 0, 0)
+		castbar.icon:SetVertexColor(1, 1, 1)
 	end
 end