diff options
author | Hal9000 <miglietta.francesco@gmail.com> | 2013-01-31 18:49:17 +0100 |
---|---|---|
committer | Hal9000 <miglietta.francesco@gmail.com> | 2013-01-31 18:49:17 +0100 |
commit | 741630d53aa385f192edb40ac27b00844285eac8 (patch) | |
tree | f46683588174a51350c5e9823435289d94b7a40f | |
parent | 86c823db97e968a98502ecc5757cd1f37acb57b0 (diff) | |
download | ManaVerse-741630d53aa385f192edb40ac27b00844285eac8.tar.gz ManaVerse-741630d53aa385f192edb40ac27b00844285eac8.tar.bz2 ManaVerse-741630d53aa385f192edb40ac27b00844285eac8.tar.xz ManaVerse-741630d53aa385f192edb40ac27b00844285eac8.zip |
Fix layout issue of filter buttons in Inventory window.
-rw-r--r-- | src/gui/inventorywindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index 1145bde02..19043510a 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -151,7 +151,7 @@ InventoryWindow::InventoryWindow(Inventory *const inventory): invenScroll->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); const int size = config.getIntValue("fontSize"); - mFilter = new TabStrip(this, "filter_" + getWindowName(), size + 8); + mFilter = new TabStrip(this, "filter_" + getWindowName(), size + 16); mFilter->addActionListener(this); mFilter->setActionEventId("tag_"); |