diff options
Diffstat (limited to 'src/gui/windows/shopwindow.cpp')
-rw-r--r-- | src/gui/windows/shopwindow.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/windows/shopwindow.cpp b/src/gui/windows/shopwindow.cpp index 757ffd902..d3b37b039 100644 --- a/src/gui/windows/shopwindow.cpp +++ b/src/gui/windows/shopwindow.cpp @@ -399,7 +399,8 @@ void ShopWindow::action(const ActionEvent &event) ItemAmountWindow::showWindow(ItemAmountWindowUsage::ShopBuyAdd, this, item, - sumAmount(item)); + sumAmount(item), + 0); } else { @@ -407,7 +408,8 @@ void ShopWindow::action(const ActionEvent &event) ItemAmountWindowUsage::ShopSellAdd, this, item, - sumAmount(item)); + sumAmount(item), + 0); } } } |