summaryrefslogtreecommitdiff
path: root/src/gui/buy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/buy.cpp')
-rw-r--r--src/gui/buy.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gui/buy.cpp b/src/gui/buy.cpp
index 86ea764b..ecb1343e 100644
--- a/src/gui/buy.cpp
+++ b/src/gui/buy.cpp
@@ -164,6 +164,14 @@ void BuyDialog::action(const std::string& eventId)
slider->setEnabled(true);
increaseButton->setEnabled(true);
m_amountItems = 0;
+ slider->setValue(0);
+ oss << m_amountItems;
+ quantityLabel->setCaption(oss.str());
+ quantityLabel->adjustSize();
+ oss.str("price : 0 GP");
+ moneyLabel->setCaption(oss.str());
+ moneyLabel->adjustSize();
+ decreaseButton->setEnabled(false);
m_maxItems = m_money / shopInventory[selectedItem].price;
}
else