From 4fbd67daccfa69df6988bdf17c67ee3d5f3049c5 Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Sat, 22 Jul 2023 21:35:00 +1000 Subject: [PATCH] Fix Inventory::update not calling base Pane update --- source/frontend/StarInventory.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/frontend/StarInventory.cpp b/source/frontend/StarInventory.cpp index bcc2c15..a7626a7 100644 --- a/source/frontend/StarInventory.cpp +++ b/source/frontend/StarInventory.cpp @@ -412,6 +412,8 @@ void InventoryPane::update(float dt) { } m_title = m_player->name(); + + Pane::update(dt); } void InventoryPane::selectTab(String const& selected) {