From 9e4e63e55f2f095696a3a371b1c23c35d84c8fcb Mon Sep 17 00:00:00 2001 From: Parnic Date: Wed, 14 Jul 2010 13:21:26 +0000 Subject: [PATCH] - fixed an issue where a disabled custom bar was always showing its icon as the default IceHUD icon and was not being properly hidden --- modules/CustomBar.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/CustomBar.lua b/modules/CustomBar.lua index b84b995..43960d9 100644 --- a/modules/CustomBar.lua +++ b/modules/CustomBar.lua @@ -96,6 +96,7 @@ function IceCustomBar.prototype:CreateBar() -- this cuts off the border around the buff icon self.barFrame.icon:SetTexCoord(0.1, 0.9, 0.1, 0.9) self.barFrame.icon:SetDrawLayer("OVERLAY") + self.barFrame.icon:Hide() end self:PositionIcons() end