View Single Post
09-16-12, 12:41 PM   #15
nailertn
An Aku'mai Servant
Join Date: Oct 2008
Posts: 33
Originally Posted by Bloodier View Post
Commenting SetBackdropColor line won't fix it:
Code:
local backdrop = {
            bgFile = "Interface\\Buttons\\WHITE8x8",
            edgeFile = "Interface\\AddOns\\zAddOn\\media\\outer_shadow",
            tile = false,
            tileSize = 32,
            edgeSize = 6,
            insets = { left = 6, right = 6, top = 6, bottom = 6 },
        }
	GameTooltip:SetBackdrop(backdrop)
	GameTooltip:SetBackdropColor(20, 20, 20, 1)
	GameTooltip:SetBackdropBorderColor(0, 0, 0, 1)
Visually:
The default color is white that's why commenting does not work. And color values should be between 0-1, use 20/255 instead of 20.
  Reply With Quote