diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-06-02 19:38:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-06-02 19:38:45 +0300 |
commit | 0c7b839dd83d1ee0589570119dc64cd5826fcbf2 (patch) | |
tree | f36215faab1773584ccd2a4c96895b0a6bd8147e /src/gui/inventorywindow.cpp | |
parent | 9d9890e76023681a3ef98e2a743856f66a91e97f (diff) | |
download | plus-0c7b839dd83d1ee0589570119dc64cd5826fcbf2.tar.gz plus-0c7b839dd83d1ee0589570119dc64cd5826fcbf2.tar.bz2 plus-0c7b839dd83d1ee0589570119dc64cd5826fcbf2.tar.xz plus-0c7b839dd83d1ee0589570119dc64cd5826fcbf2.zip |
Fix crash in inventory/storage if sorting dropdown is open.
Diffstat (limited to 'src/gui/inventorywindow.cpp')
-rw-r--r-- | src/gui/inventorywindow.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index a817e749f..ca6804ea9 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -273,6 +273,8 @@ InventoryWindow::~InventoryWindow() mInventory->removeInventoyListener(this); if (!invInstances.empty()) invInstances.front()->updateDropButton(); + + mSortDropDown->hideDrop(); delete mSortModel; mSortModel = nullptr; delete mTextPopup; |