diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-22 20:07:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-22 20:07:17 +0300 |
commit | 226f98e12755b50cafe17d65a4c0aafd3994cd05 (patch) | |
tree | 621bdfc67747e76c3fe7fb68137e1211e01bb4d8 /src | |
parent | de4548a50ecb4d4700c9899044f50070f7d9a95a (diff) | |
download | plus-226f98e12755b50cafe17d65a4c0aafd3994cd05.tar.gz plus-226f98e12755b50cafe17d65a4c0aafd3994cd05.tar.bz2 plus-226f98e12755b50cafe17d65a4c0aafd3994cd05.tar.xz plus-226f98e12755b50cafe17d65a4c0aafd3994cd05.zip |
Show duplicates in egg selection dialog.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/models/shopitems.h | 3 | ||||
-rw-r--r-- | src/gui/windows/eggselectiondialog.cpp | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/models/shopitems.h b/src/gui/models/shopitems.h index 925354960..5e8fb2b97 100644 --- a/src/gui/models/shopitems.h +++ b/src/gui/models/shopitems.h @@ -121,6 +121,9 @@ class ShopItems final : public ListModel std::vector<ShopItem*> &items() A_WARN_UNUSED { return mShopItems; } + void setMergeDuplicates(const bool b) + { mMergeDuplicates = b; } + private: /** * Searches the current items in the shop for the specified diff --git a/src/gui/windows/eggselectiondialog.cpp b/src/gui/windows/eggselectiondialog.cpp index bac963235..22527e3c6 100644 --- a/src/gui/windows/eggselectiondialog.cpp +++ b/src/gui/windows/eggselectiondialog.cpp @@ -63,6 +63,7 @@ void EggSelectionDialog::initButtons() // TRANSLATORS: egg selection dialog button mSellButton->setCaption(_("Select")); mSellButton->adjustSize(); + mShopItems->setMergeDuplicates(false); } void EggSelectionDialog::sellAction(const ActionEvent &event) |