- fixed the "hide blizzard buff frame" checkbox not hiding temporary enchants (weapon buffs)

This commit is contained in:
Parnic
2009-07-18 04:47:47 +00:00
parent 8adf645889
commit 727e65dbdf

View File

@ -86,6 +86,7 @@ end
function PlayerInfo.prototype:ShowBlizz() function PlayerInfo.prototype:ShowBlizz()
BuffFrame:Show() BuffFrame:Show()
TemporaryEnchantFrame:Show()
BuffFrame:RegisterEvent("UNIT_AURA"); BuffFrame:RegisterEvent("UNIT_AURA");
end end
@ -93,6 +94,7 @@ end
function PlayerInfo.prototype:HideBlizz() function PlayerInfo.prototype:HideBlizz()
BuffFrame:Hide() BuffFrame:Hide()
TemporaryEnchantFrame:Hide()
BuffFrame:UnregisterAllEvents() BuffFrame:UnregisterAllEvents()
end end