diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-01-31 01:55:31 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-01-31 01:55:31 +0300 |
commit | c01b3f215a9ec7e5ebceac8550c1e18c0a2b7435 (patch) | |
tree | 5c4c3a4b228a589c1effd98afcde5d3799801aaa /src/gui/charcreatedialog.cpp | |
parent | 0fd7a7f6b322fcf98297dbc64632e009afb6d4ac (diff) | |
download | plus-c01b3f215a9ec7e5ebceac8550c1e18c0a2b7435.tar.gz plus-c01b3f215a9ec7e5ebceac8550c1e18c0a2b7435.tar.bz2 plus-c01b3f215a9ec7e5ebceac8550c1e18c0a2b7435.tar.xz plus-c01b3f215a9ec7e5ebceac8550c1e18c0a2b7435.zip |
Add size limit to nick in char creation dialog.
Diffstat (limited to 'src/gui/charcreatedialog.cpp')
-rw-r--r-- | src/gui/charcreatedialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/charcreatedialog.cpp b/src/gui/charcreatedialog.cpp index 641e07db6..74a5a1f1f 100644 --- a/src/gui/charcreatedialog.cpp +++ b/src/gui/charcreatedialog.cpp @@ -83,6 +83,7 @@ CharCreateDialog::CharCreateDialog(CharSelectDialog *parent, int slot): updateHair(); mNameField = new TextField(""); + mNameField->setMaximum(24); mNameLabel = new Label(_("Name:")); // TRANSLATORS: This is a narrow symbol used to denote 'next'. // You may change this symbol if your language uses another. |