diff options
author | Aaron Marks <nymacro@gmail.com> | 2005-06-03 06:37:42 +0000 |
---|---|---|
committer | Aaron Marks <nymacro@gmail.com> | 2005-06-03 06:37:42 +0000 |
commit | 722c13f23561bc99dc6edecfb5ac76d704cb495e (patch) | |
tree | 24283a54ed46721c1cf1066591e4e5fe6d2c590f /src/gui | |
parent | f73656a5f854bbde8aaf727c09d31a9215b1e041 (diff) | |
download | mana-client-722c13f23561bc99dc6edecfb5ac76d704cb495e.tar.gz mana-client-722c13f23561bc99dc6edecfb5ac76d704cb495e.tar.bz2 mana-client-722c13f23561bc99dc6edecfb5ac76d704cb495e.tar.xz mana-client-722c13f23561bc99dc6edecfb5ac76d704cb495e.zip |
Magical 1 character change in new item amount window (+ to -).
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/item_amount.cpp | 2 |
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); } } |