| 234 | } |
| 235 | |
| 236 | void InventoryPane::displayed() { |
| 237 | Pane::displayed(); |
| 238 | m_expectingSwap = false; |
| 239 | |
| 240 | for (auto grid : m_itemGrids) |
| 241 | grid.second->updateItemState(); |
| 242 | m_itemGrids[m_selectedTab]->indicateChangedSlots(); |
| 243 | } |
| 244 | |
| 245 | PanePtr InventoryPane::createTooltip(Vec2I const& screenPosition) { |
| 246 | ItemPtr item; |
nothing calls this directly
no test coverage detected