diff options
Diffstat (limited to 'src/gui/windows/inventorywindow.cpp')
-rw-r--r-- | src/gui/windows/inventorywindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/windows/inventorywindow.cpp b/src/gui/windows/inventorywindow.cpp index 8722e35e3..28d83b10f 100644 --- a/src/gui/windows/inventorywindow.cpp +++ b/src/gui/windows/inventorywindow.cpp @@ -643,11 +643,11 @@ void InventoryWindow::mouseClicked(MouseEvent &event) /* Convert relative to the window coordinates to absolute screen * coordinates. */ - const int mx = event.getX() + getX(); - const int my = event.getY() + getY(); - if (popupMenu != nullptr) { + const int mx = event.getX() + getX(); + const int my = event.getY() + getY(); + popupMenu->showPopup(this, mx, my, item, |