diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-22 21:35:00 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-22 21:35:00 +1000 |
commit | 4fbd67daccfa69df6988bdf17c67ee3d5f3049c5 (patch) | |
tree | 86dbf398950d2117802e5a2795abc1f156c9e7da /source/frontend/StarInventory.cpp | |
parent | 1a2f143f88c2991f5cec1685e354f25ca7917526 (diff) |
Fix Inventory::update not calling base Pane update
Diffstat (limited to 'source/frontend/StarInventory.cpp')
-rw-r--r-- | source/frontend/StarInventory.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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) { |