diff options
Diffstat (limited to 'src/gui/windows/inventorywindow.cpp')
-rw-r--r-- | src/gui/windows/inventorywindow.cpp | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/src/gui/windows/inventorywindow.cpp b/src/gui/windows/inventorywindow.cpp index 53e847af0..3865647e0 100644 --- a/src/gui/windows/inventorywindow.cpp +++ b/src/gui/windows/inventorywindow.cpp @@ -311,30 +311,15 @@ void InventoryWindow::action(const ActionEvent &event) const std::string &eventId = event.getId(); if (eventId == "outfit") { - if (outfitWindow) - { - outfitWindow->setVisible(!outfitWindow->isWindowVisible()); - if (outfitWindow->isWindowVisible()) - outfitWindow->requestMoveToTop(); - } + inputManager.executeAction(InputAction::WINDOW_OUTFIT); } else if (eventId == "shop") { - if (shopWindow) - { - shopWindow->setVisible(!shopWindow->isWindowVisible()); - if (shopWindow->isWindowVisible()) - shopWindow->requestMoveToTop(); - } + inputManager.executeAction(InputAction::WINDOW_SHOP); } else if (eventId == "equipment") { - if (equipmentWindow) - { - equipmentWindow->setVisible(!equipmentWindow->isWindowVisible()); - if (equipmentWindow->isWindowVisible()) - equipmentWindow->requestMoveToTop(); - } + inputManager.executeAction(InputAction::WINDOW_EQUIPMENT); } else if (eventId == "close") { |