diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-05-07 23:16:16 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-05-07 23:16:16 -0600 |
commit | 7bcadd46d12b4c42b1f6e3038f79db7f8d8c6b5a (patch) | |
tree | ee1226bbf132de564f877a4967c57fd43b6f06f9 /src/gui/itemamount.cpp | |
parent | 02401cfae13ea9d2c836e707f21164729f8ee364 (diff) | |
download | mana-7bcadd46d12b4c42b1f6e3038f79db7f8d8c6b5a.tar.gz mana-7bcadd46d12b4c42b1f6e3038f79db7f8d8c6b5a.tar.bz2 mana-7bcadd46d12b4c42b1f6e3038f79db7f8d8c6b5a.tar.xz mana-7bcadd46d12b4c42b1f6e3038f79db7f8d8c6b5a.zip |
Fix updates in the ItemAmmountWindow
CHanging the IntTextField will now update the Slider.
Diffstat (limited to 'src/gui/itemamount.cpp')
-rw-r--r-- | src/gui/itemamount.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/itemamount.cpp b/src/gui/itemamount.cpp index 03f1ae5f..e3891d29 100644 --- a/src/gui/itemamount.cpp +++ b/src/gui/itemamount.cpp @@ -74,6 +74,7 @@ ItemAmountWindow::ItemAmountWindow(Usage usage, Window *parent, Item *item, mItemAmountTextField = new IntTextField(1); mItemAmountTextField->setRange(1, mMax); mItemAmountTextField->setWidth(35); + mItemAmountTextField->addKeyListener(this); // Slider mItemAmountSlide = new Slider(1.0, mMax); @@ -174,6 +175,11 @@ void ItemAmountWindow::close() scheduleDelete(); } +void ItemAmountWindow::keyReleased(gcn::KeyEvent &keyEvent) +{ + mItemAmountSlide->setValue(mItemAmountTextField->getValue()); +} + void ItemAmountWindow::showWindow(Usage usage, Window *parent, Item *item, int maxRange) { |