diff options
author | Blue112 <bluesansdouze@gmail.com> | 2009-04-19 17:16:18 +0200 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-04-19 09:33:10 -0600 |
commit | 5201050a8822dd0a33ffa3a6e9fee7c73cb215de (patch) | |
tree | 50dea026da56deaf68e28066f527694bd939e6ae /src/gui/storagewindow.cpp | |
parent | 71097ded562567c784c0d0378d0163e0f4a4a136 (diff) | |
download | mana-client-5201050a8822dd0a33ffa3a6e9fee7c73cb215de.tar.gz mana-client-5201050a8822dd0a33ffa3a6e9fee7c73cb215de.tar.bz2 mana-client-5201050a8822dd0a33ffa3a6e9fee7c73cb215de.tar.xz mana-client-5201050a8822dd0a33ffa3a6e9fee7c73cb215de.zip |
Min-width fixed for storage window
Diffstat (limited to 'src/gui/storagewindow.cpp')
-rw-r--r-- | src/gui/storagewindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/storagewindow.cpp b/src/gui/storagewindow.cpp index efa2bdd4..df6df65a 100644 --- a/src/gui/storagewindow.cpp +++ b/src/gui/storagewindow.cpp @@ -79,7 +79,7 @@ StorageWindow::StorageWindow(int invSize): mSlotsBar->setProgress((float) mUsedSlots / mMaxSlots); setMinHeight(130); - setMinWidth(mSlotsLabel->getWidth()); + setMinWidth(200); place(0, 0, mSlotsLabel).setPadding(3); place(1, 0, mSlotsBar, 3); |