- fixed lower text popping back up when it shouldn't

This commit is contained in:
Parnic
2010-10-16 14:45:25 +00:00
parent af432dc2e1
commit dc85c43a3e

View File

@ -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)