Skip to content

Commit

Permalink
Fix an issue where the bag size was not saved
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils89 committed Jan 9, 2025
1 parent f3dea4a commit d842af1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.8.6-Cata
FIXES
- Fix an issue where the bag size was not saved

1.8.5-Cata
FIXES
- Fix BigWigs integration
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG_NEW_VERSION.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.8.6-Cata
FIXES
- Fix an issue where the bag size was not saved

1.8.5-Cata
FIXES
- Fix BigWigs integration
Expand Down
4 changes: 4 additions & 0 deletions changelog.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ local ct = {
}
GW.CHANGELOGS_TYPES = ct

addChange("1.8.6",{
{ct.bug, [=[Fix an issue where the bag size was not saved]=]},
})

addChange("1.8.5",{
{ct.bug, [=[Fix BigWigs integration]=]},
})
Expand Down
2 changes: 1 addition & 1 deletion inventory/bag.lua
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ end
GW.AddForProfiling("bag", "updateBagBar", updateBagBar)

local function onBagResizeStop(self)
GW.settingsBAG_WIDTH = self:GetWidth()
GW.settings.BAG_WIDTH = self:GetWidth()
GwBagFrame.Header:SetWidth(GW.settings.BAG_WIDTH)
inv.onMoved(self, "BAG_POSITION", snapFrameSize)
end
Expand Down

0 comments on commit d842af1

Please sign in to comment.