diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/gui/sell.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -47,6 +47,8 @@ src/gui/skill.cpp, src/gui/skill.h, src/gui/stats.cpp, src/gui/status.cpp: Another small header cleanup, should also solve compilation problems on windows. + * src/gui/sell.cpp: Reset selection in the sell dialog if all items at the + selected slot are sold. 2005-08-13 Eugenio Favalli <elvenprogrammer@gmail.com> diff --git a/src/gui/sell.cpp b/src/gui/sell.cpp index 920d90f6..6bac0bb1 100644 --- a/src/gui/sell.cpp +++ b/src/gui/sell.cpp @@ -256,6 +256,7 @@ void SellDialog::action(const std::string& eventId) { slider->setEnabled(false); increaseButton->setEnabled(false); + itemList->setSelected(-1); shopInventory.erase(shopInventory.begin() += selectedItem); } else |