diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-23 23:39:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-23 23:39:01 +0300 |
commit | 98295d32030c620040e3e6bd912c6808174640e4 (patch) | |
tree | 20f938a3dc3421d0c9db1c9bbe6af63643470fe6 /src/gui/windows/shopwindow.cpp | |
parent | 56521cb9236ac7e967117cb967c371c1ae836061 (diff) | |
download | ManaVerse-98295d32030c620040e3e6bd912c6808174640e4.tar.gz ManaVerse-98295d32030c620040e3e6bd912c6808174640e4.tar.bz2 ManaVerse-98295d32030c620040e3e6bd912c6808174640e4.tar.xz ManaVerse-98295d32030c620040e3e6bd912c6808174640e4.zip |
Remove default parameters from tabstrip.
Diffstat (limited to 'src/gui/windows/shopwindow.cpp')
-rw-r--r-- | src/gui/windows/shopwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/windows/shopwindow.cpp b/src/gui/windows/shopwindow.cpp index d3b37b039..6ffd2649a 100644 --- a/src/gui/windows/shopwindow.cpp +++ b/src/gui/windows/shopwindow.cpp @@ -161,7 +161,7 @@ ShopWindow::ShopWindow() : const int size = config.getIntValue("fontSize") + getOption("tabHeightAdjust", 16); - mTabs = new TabStrip(this, "shop", size); + mTabs = new TabStrip(this, "shop", size, 0); mTabs->addActionListener(this); mTabs->setActionEventId("tab_"); // TRANSLATORS: shop window tab name |