diff options
author | Ira Rice <irarice@gmail.com> | 2009-01-26 21:35:48 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-26 21:49:48 -0700 |
commit | cbb9ceaac89f7a29ff36445f2405c1a24b7a0da8 (patch) | |
tree | 14da9b315e582313b403ee5b1f59b3f8ae646c35 /src/gui/npclistdialog.cpp | |
parent | 65e552d0bd3dee1f1962fc7e9adac4126ab603a4 (diff) | |
download | mana-cbb9ceaac89f7a29ff36445f2405c1a24b7a0da8.tar.gz mana-cbb9ceaac89f7a29ff36445f2405c1a24b7a0da8.tar.bz2 mana-cbb9ceaac89f7a29ff36445f2405c1a24b7a0da8.tar.xz mana-cbb9ceaac89f7a29ff36445f2405c1a24b7a0da8.zip |
Fixed a few default window sizes so that they look better for first time
client loaders.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/npclistdialog.cpp')
-rw-r--r-- | src/gui/npclistdialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/npclistdialog.cpp b/src/gui/npclistdialog.cpp index 9f41be67..bb815680 100644 --- a/src/gui/npclistdialog.cpp +++ b/src/gui/npclistdialog.cpp @@ -38,6 +38,8 @@ NpcListDialog::NpcListDialog(): setMinWidth(200); setMinHeight(150); + setDefaultSize(0, 0, 260, 200); + mItemList = new ListBox(this); scrollArea = new ScrollArea(mItemList); okButton = new Button(_("OK"), "ok", this); |