From 62e99da1c2c11ff78ae05448e464c6c4bc7ea2d8 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Tue, 24 Mar 2026 08:38:06 -0700 Subject: [PATCH] fix: remove forced backpack-open from toggleBag for full bag independence --- src/ui/inventory_screen.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/ui/inventory_screen.cpp b/src/ui/inventory_screen.cpp index d401e94a..a04895be 100644 --- a/src/ui/inventory_screen.cpp +++ b/src/ui/inventory_screen.cpp @@ -710,10 +710,6 @@ void InventoryScreen::toggleBackpack() { void InventoryScreen::toggleBag(int idx) { if (idx >= 0 && idx < 4) { bagOpen_[idx] = !bagOpen_[idx]; - if (bagOpen_[idx]) { - // Keep backpack as the anchor window at the bottom of the stack. - backpackOpen_ = true; - } } }