ElvUI WindTools

ElvUI WindTools

3M Downloads

[Feature Request] Option to hide Blizzard default loot panel

Skullcan opened this issue · 1 comments

commented

Hi, first of all, thanks for the amazing addon!

As of now I have to use an extra addon to hide the default loot panel at the end of the dungeons.
It would be great if the Windtools offered an option to hide!

Reason is, it is bugged since SL PTR and Blizzard won't fix T_T
Sometimes it shows loot from dungeons / raids you've completed before.

There's an addon to do this atm and it's code is super simple, so maybe add it as an option in Windtools?

local f = CreateFrame("Frame")
f:RegisterEvent("PLAYER_LOGIN")
f:SetScript("OnEvent", function()
    BossBanner:UnregisterEvent("ENCOUNTER_LOOT_RECEIVED")
end)

This is the code of the addon that hides this panel.

Thanks again.

commented

added in 8e27043