- hid the "rotate 90 degrees" option on cast bars and eclipse bars since it just doesn't work very well and looks bad. users keep reporting that these are broken when rotating and since i don't have a good fix, i'm disabling the feature for now

This commit is contained in:
Parnic
2010-10-25 04:20:22 +00:00
parent 673fb524ba
commit 1a00681356
3 changed files with 14 additions and 2 deletions

View File

@ -45,11 +45,17 @@ function EclipseBar.prototype:GetDefaultSettings()
color = {r=1, g=0, b=0, a=1},
height = 6,
}
defaults.shouldHideBarRotation = true
return defaults
end
function EclipseBar.prototype:Enable(core)
if self.moduleSettings.rotateBar then
self.moduleSettings.rotateBar = false
self:ResetRotation()
end
EclipseBar.super.prototype.Enable(self, core)
self:RegisterEvent("UPDATE_SHAPESHIFT_FORM", "UpdateShown")