From dc85c43a3e94e3102e4e2560af4c9765d5df9a76 Mon Sep 17 00:00:00 2001 From: Parnic Date: Sat, 16 Oct 2010 14:45:25 +0000 Subject: [PATCH] - fixed lower text popping back up when it shouldn't --- IceBarElement.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IceBarElement.lua b/IceBarElement.lua index ecc2265..ba24df1 100644 --- a/IceBarElement.lua +++ b/IceBarElement.lua @@ -66,7 +66,7 @@ function IceBarElement.prototype:Enable() if self.moduleSettings.textVisible["upper"] then self.frame.bottomUpperText:Hide() end - if self.moduleSettings.textVisible["upper"] then + if self.moduleSettings.textVisible["lower"] then self.frame.bottomLowerText:Hide() end end) @@ -74,7 +74,7 @@ function IceBarElement.prototype:Enable() if self.moduleSettings.textVisible["upper"] then self.frame.bottomUpperText:Show() end - if self.moduleSettings.textVisible["upper"] then + if self.moduleSettings.textVisible["lower"] then self.frame.bottomLowerText:Show() end end)