diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-21 00:53:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-21 00:53:11 +0300 |
commit | b10b9bbf68702e7c2b728d4036391399ae397eaa (patch) | |
tree | e9ead826ac5244f6abec780214bc8d9844c23adc /src/gui/windows/inventorywindow.cpp | |
parent | 219ca3560cf16a3c303b9d88756448a9a2fb19a5 (diff) | |
download | plus-b10b9bbf68702e7c2b728d4036391399ae397eaa.tar.gz plus-b10b9bbf68702e7c2b728d4036391399ae397eaa.tar.bz2 plus-b10b9bbf68702e7c2b728d4036391399ae397eaa.tar.xz plus-b10b9bbf68702e7c2b728d4036391399ae397eaa.zip |
Set parts of most windows unselectable.
Diffstat (limited to 'src/gui/windows/inventorywindow.cpp')
-rw-r--r-- | src/gui/windows/inventorywindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/windows/inventorywindow.cpp b/src/gui/windows/inventorywindow.cpp index 4f855e442..8ab12f6a8 100644 --- a/src/gui/windows/inventorywindow.cpp +++ b/src/gui/windows/inventorywindow.cpp @@ -180,6 +180,7 @@ InventoryWindow::InventoryWindow(Inventory *const inventory) : mFilter = new TabStrip(this, "filter_" + getWindowName(), size + 16); mFilter->addActionListener(this); mFilter->setActionEventId("tag_"); + mFilter->setSelectable(false); StringVect tags = ItemDB::getTags(); const size_t sz = tags.size(); |