diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-08-06 22:35:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-08-06 22:35:20 +0300 |
commit | 9505f6b7d5a64fb59ba177fd72f9eb83f7d37d9a (patch) | |
tree | d29f62e20e0c66af86acf625d8c5c69f77ca882b /src/gui/outfitwindow.cpp | |
parent | 7c30708a194f37fd2dc748256c72d8b06badd0fc (diff) | |
download | plus-9505f6b7d5a64fb59ba177fd72f9eb83f7d37d9a.tar.gz plus-9505f6b7d5a64fb59ba177fd72f9eb83f7d37d9a.tar.bz2 plus-9505f6b7d5a64fb59ba177fd72f9eb83f7d37d9a.tar.xz plus-9505f6b7d5a64fb59ba177fd72f9eb83f7d37d9a.zip |
Extend outfits to 4x4 items in each outfit.
Diffstat (limited to 'src/gui/outfitwindow.cpp')
-rw-r--r-- | src/gui/outfitwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/outfitwindow.cpp b/src/gui/outfitwindow.cpp index f4767c33c..8b498f46c 100644 --- a/src/gui/outfitwindow.cpp +++ b/src/gui/outfitwindow.cpp @@ -65,7 +65,7 @@ OutfitWindow::OutfitWindow(): mBoxWidth(33), mBoxHeight(33), mGridWidth(4), - mGridHeight(3), + mGridHeight(4), mItemClicked(false), mItemMoved(nullptr), mItemSelected(-1), @@ -80,7 +80,7 @@ OutfitWindow::OutfitWindow(): setDefaultSize(250, 400, 150, 230); setMinWidth(145); - setMinHeight(220); + setMinHeight(260); mBorderColor = Theme::getThemeColor(Theme::BORDER, 64); mBackgroundColor = Theme::getThemeColor(Theme::BACKGROUND, 32); |