diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-04-16 12:30:27 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-04-16 12:30:27 -0600 |
commit | 19469fdabf9f66348da8e10a7187f634d0c0a7b7 (patch) | |
tree | cf634a59a53cf99bc63e5be9f9cac091d6d3186c /src | |
parent | b04dd091b9f9e2ff366fc3a5882289df72e2efd9 (diff) | |
download | mana-client-19469fdabf9f66348da8e10a7187f634d0c0a7b7.tar.gz mana-client-19469fdabf9f66348da8e10a7187f634d0c0a7b7.tar.bz2 mana-client-19469fdabf9f66348da8e10a7187f634d0c0a7b7.tar.xz mana-client-19469fdabf9f66348da8e10a7187f634d0c0a7b7.zip |
Fix gender setting in CharCreationDialog
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/charcreatedialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/charcreatedialog.cpp b/src/gui/charcreatedialog.cpp index 024d18b3..dc982e21 100644 --- a/src/gui/charcreatedialog.cpp +++ b/src/gui/charcreatedialog.cpp @@ -323,6 +323,8 @@ void CharCreateDialog::setFixedGender(bool fixed, Gender gender) mFemale->setSelected(false); } + mPlayer->setGender(gender); + if (fixed) { mMale->setEnabled(false); |