Fix IceHUD hiding climbing, film, etc. frames

Fixes wowace ticket 336
This commit is contained in:
Parnic
2023-01-21 20:41:03 -06:00
parent 8b45079d38
commit 6c44ddc93a

View File

@ -53,6 +53,9 @@ function DragonridingVigor.prototype:CheckShouldShow(event, unit, info)
self:Show(true) self:Show(true)
else else
self:Show(false) self:Show(false)
if self.moduleSettings.hideBlizz then
self:ShowBlizz()
end
end end
end end
@ -71,6 +74,8 @@ function DragonridingVigor.prototype:UpdateVigorRecharge(event, widget)
if event ~= "internal" then if event ~= "internal" then
if self.moduleSettings.hideBlizz then if self.moduleSettings.hideBlizz then
self:HideBlizz() self:HideBlizz()
else
self:ShowBlizz()
end end
end end