welp looks like adibags bit the bullet with 8.1.5 anyone know of a bag addon that does that kind of unique sorting?
Bagnon’s messed up right now too, just wait for a fix.
Adibags hasnt been updated in a while, just worried it won’t be
Blizzard remove a template. Any addon using it will need a change.
I see at least one addon has just made a local copy of the template with a unique name and is using that. Could be a quick fix.
Adibags specifically has a fix posted in the issues on its GitHub.
https://github.com/AdiAddons/AdiBags/issues/332
I hope someone fixes tbag as well. I hate when Blizzard breaks things on old addons lol
Sign me up for waiting eagerly for a OneBag/Bank update.
ArkInventory’s likewise gone down…
Aaaargh.
hey boss, i found a temp fix sort of, turn off display blizzard frames for hidden bags in bagnon settings,
This fix works perfectly for those wondering.
For those wanting to do it themselves in the short term, the basic fix for all ItemButton related problems:
In XML for any button that inherits ItemButtonTemplate
Change:
<Button inherits="ItemButtonTemplate" ...>
<Button inherits="ItemButtonTemplate, SomeOtherTemplate" ...>
to:
<ItemButton ...>
<ItemButton inherits="SomeOtherTemplate" ...>
For lua:
Change:
xxx = CreateFrame("Button", "namexxx", parent, "ItemButtonTemplate")
xxx = CreateFrame("Button", "namexxx", parent, "ItemButtonTemplate, SomeOtherTemplate")
To:
xxx = CreateFrame(“ItemButton”, “namexxx”, parent)
xxx = CreateFrame(“ItemButton”, “namexxx”, parent, " SomeOtherTemplate")
where anything with … or xxx you can leave the same as it was originally.
With any luck your addon author of choice will provide a permanent fix in the not too distant future.