diff options
author | Ira Rice <irarice@gmail.com> | 2009-02-04 20:56:13 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-02-04 20:56:13 -0700 |
commit | 9f0d62aa2fbc0ec822526b129070615696ac6881 (patch) | |
tree | 12e1d4ac5c395b2bc54e431a296e01dd7115576d /src/gui/npclistdialog.cpp | |
parent | cd511bda4e07f5de49ef66eff9d2fe4d649c17b6 (diff) | |
download | mana-9f0d62aa2fbc0ec822526b129070615696ac6881.tar.gz mana-9f0d62aa2fbc0ec822526b129070615696ac6881.tar.bz2 mana-9f0d62aa2fbc0ec822526b129070615696ac6881.tar.xz mana-9f0d62aa2fbc0ec822526b129070615696ac6881.zip |
Changed NPC list dialog to selection wrap.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/npclistdialog.cpp')
-rw-r--r-- | src/gui/npclistdialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/npclistdialog.cpp b/src/gui/npclistdialog.cpp index e6406422..7d8a362a 100644 --- a/src/gui/npclistdialog.cpp +++ b/src/gui/npclistdialog.cpp @@ -43,6 +43,7 @@ NpcListDialog::NpcListDialog(): setDefaultSize(0, 0, 260, 200); mItemList = new ListBox(this); + mItemList->setWrappingEnabled(true); scrollArea = new ScrollArea(mItemList); okButton = new Button(_("OK"), "ok", this); cancelButton = new Button(_("Cancel"), "cancel", this); |