Skip to content

Commit

Permalink
Fix hiding KeyRingButton
Browse files Browse the repository at this point in the history
  • Loading branch information
Nevcairiel committed Apr 20, 2024
1 parent 624190d commit 3f73d8c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions BagBarClassic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ function BagBar:FeedButtons()
if KeyRingButton and self.config.keyring then
table_insert(self.buttons, KeyRingButton)
count = count + 1
elseif KeyRingButton then
KeyRingButton:Hide()
KeyRingButton:ClearAllPoints()
end

if not self.config.onebag then
Expand Down
4 changes: 4 additions & 0 deletions HideBlizzardClassic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ function Bartender4:HideBlizzard()
hideActionBarFrame(MainMenuBarArtFrameBackground)
hideActionBarFrame(MicroButtonAndBagsBar, false, false, true)

if KeyRingButton then
hideActionBarFrame(KeyRingButton, false, false)
end

if StatusTrackingBarManager then
StatusTrackingBarManager:Hide()
--StatusTrackingBarManager:SetParent(UIHider)
Expand Down

0 comments on commit 3f73d8c

Please sign in to comment.