summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gui/item_amount.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/item_amount.cpp b/src/gui/item_amount.cpp
index 5cac1746..2afacb05 100644
--- a/src/gui/item_amount.cpp
+++ b/src/gui/item_amount.cpp
@@ -122,7 +122,7 @@ void ItemAmountWindow::action(const std::string& eventId)
}
else if (eventId == "Minus")
{
- itemAmountTextBox->setInt(itemAmountTextBox->getInt() + 1);
+ itemAmountTextBox->setInt(itemAmountTextBox->getInt() - 1);
}
}