View Single Post
03-09-11, 05:52 PM   #7
Nibelheim
local roygbi-
 
Nibelheim's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2010
Posts: 1,600
Originally Posted by Lily.Petal View Post
Works great, only one problem now, it changes my background after combat to white, instead of back to black ><

Try changing the color lines to:

Code:
local color = status and {GetThreatStatusColor(status)} or {0,0,0}
self:SetBackdropBorderColor(unpack(color))
The {0,0,0} is what you want the default color to be.

Last edited by Nibelheim : 03-09-11 at 05:56 PM.
  Reply With Quote