From 7424c5e08e78151ceb2140c83e7ef7c53c0c3a0f Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Fri, 26 Mar 2010 06:40:10 -0400 Subject: [PATCH] In ttAdd(): Prepended the color strings with "|cff" due to the impending demise of hexcolor(). --- Frame.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Frame.lua b/Frame.lua index b3b488e..54030a2 100644 --- a/Frame.lua +++ b/Frame.lua @@ -541,10 +541,10 @@ do if str2 then width = width / 2 - acquire_tip:SetCell(line, 1, hexcolor1..leftStr.."|r", "LEFT", nil, nil, 0, 0, width, width) - acquire_tip:SetCell(line, 2, hexcolor2..str2.."|r", "RIGHT", nil, nil, 0, 0, width, width) + acquire_tip:SetCell(line, 1, "|cff"..hexcolor1..leftStr.."|r", "LEFT", nil, nil, 0, 0, width, width) + acquire_tip:SetCell(line, 2, "|cff"..hexcolor2..str2.."|r", "RIGHT", nil, nil, 0, 0, width, width) else - acquire_tip:SetCell(line, 1, hexcolor1..leftStr.."|r", nil, "LEFT", 2, nil, 0, 0, width, width) + acquire_tip:SetCell(line, 1, "|cff"..hexcolor1..leftStr.."|r", nil, "LEFT", 2, nil, 0, 0, width, width) end end -- 1.7.9.5