diff --git a/modules/FocusHealth.lua b/modules/FocusHealth.lua index 1cafd9d..c9da12c 100644 --- a/modules/FocusHealth.lua +++ b/modules/FocusHealth.lua @@ -210,6 +210,9 @@ function FocusHealth.prototype:GetOptions() disabled = function() return not self.moduleSettings.enabled end, + hidden = function() + return IceHUD.IceCore:ShouldUseDogTags() + end, order = 40.1 } diff --git a/modules/SliceAndDice.lua b/modules/SliceAndDice.lua index 39d68c0..6751fa3 100644 --- a/modules/SliceAndDice.lua +++ b/modules/SliceAndDice.lua @@ -165,6 +165,20 @@ function SliceAndDice.prototype:CreateDurationBar() self:UpdateDurationBar() end +function SliceAndDice.prototype:RotateHorizontal() + SliceAndDice.super.prototype.RotateHorizontal(self) + + self:RotateFrame(self.durationFrame) +end + +function SliceAndDice.prototype:ResetRotation() + SliceAndDice.super.prototype.ResetRotation(self) + + if self.durationFrame.anim then + self.durationFrame.anim:Stop() + end +end + -- 'Protected' methods -------------------------------------------------------- function SliceAndDice.prototype:GetBuffDuration(unitName, buffName)