Skip to content

Commit

Permalink
Fixed a bug where unstacked items weren't rendered correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cidan committed May 22, 2023
1 parent a241bfa commit 61bed39
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions widgets/ContainerFrame.lua
Original file line number Diff line number Diff line change
Expand Up @@ -921,12 +921,11 @@ function containerProto:RemoveSlot(slotId)
end

function containerProto:UpdateButtons()
if self.forceLayout then
if addon.atBank then
self:FullUpdate()
end
return
elseif not self:HasContentChanged() then
if addon.atBank and self.forceLayout then
return self:FullUpdate()
end

if not self:HasContentChanged() then
return
end
self:Debug('UpdateButtons')
Expand Down

0 comments on commit 61bed39

Please sign in to comment.