- 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 if self.moduleSettings.textVisible["upper"] then
self.frame.bottomUpperText:Hide() self.frame.bottomUpperText:Hide()
end end
if self.moduleSettings.textVisible["upper"] then if self.moduleSettings.textVisible["lower"] then
self.frame.bottomLowerText:Hide() self.frame.bottomLowerText:Hide()
end end
end) end)
@ -74,7 +74,7 @@ function IceBarElement.prototype:Enable()
if self.moduleSettings.textVisible["upper"] then if self.moduleSettings.textVisible["upper"] then
self.frame.bottomUpperText:Show() self.frame.bottomUpperText:Show()
end end
if self.moduleSettings.textVisible["upper"] then if self.moduleSettings.textVisible["lower"] then
self.frame.bottomLowerText:Show() self.frame.bottomLowerText:Show()
end end
end) end)