Skip to content

Commit

Permalink
Added support for toggles if combined bag in blizzard UI is selected.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cidan committed Dec 8, 2023
1 parent f68adc1 commit 42e8af2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/hooks.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ addon.backpackShouldClose = false

function addon.ForceHideBlizzardBags()
for i = 1, NUM_TOTAL_BAG_FRAMES, 1 do
_G["ContainerFrame"..i]:Hide()
CloseBag(i)
end
end

function addon.ForceShowBlizzardBags()
for i = 1, NUM_TOTAL_BAG_FRAMES, 1 do
_G["ContainerFrame"..i]:Show()
OpenBag(i)
end
end

Expand Down

0 comments on commit 42e8af2

Please sign in to comment.