diff --git a/CHANGELOG.txt b/CHANGELOG.txt index da9ff4eb..ab041cb7 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 diff --git a/CHANGELOG_NEW_VERSION.txt b/CHANGELOG_NEW_VERSION.txt index 063507b3..9729bceb 100644 --- a/CHANGELOG_NEW_VERSION.txt +++ b/CHANGELOG_NEW_VERSION.txt @@ -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 diff --git a/changelog.lua b/changelog.lua index 4f97fe6f..c2ed9779 100644 --- a/changelog.lua +++ b/changelog.lua @@ -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]=]}, }) diff --git a/inventory/bag.lua b/inventory/bag.lua index 2c4e0ba8..3e5ae7da 100644 --- a/inventory/bag.lua +++ b/inventory/bag.lua @@ -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