diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-01-17 18:45:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-01-17 18:45:21 +0300 |
commit | bc9712cfb34a891a64bd28b76df0f9f4e5d01513 (patch) | |
tree | f8687ee78d213e5a90572fc06b642d24f9ad28de /src/gui/editserverdialog.cpp | |
parent | 37c0c88a7b96919470a0abed8e17b3a0352ca49d (diff) | |
download | plus-bc9712cfb34a891a64bd28b76df0f9f4e5d01513.tar.gz plus-bc9712cfb34a891a64bd28b76df0f9f4e5d01513.tar.bz2 plus-bc9712cfb34a891a64bd28b76df0f9f4e5d01513.tar.xz plus-bc9712cfb34a891a64bd28b76df0f9f4e5d01513.zip |
Fix server type dropdown in new server dialog.
Diffstat (limited to 'src/gui/editserverdialog.cpp')
-rw-r--r-- | src/gui/editserverdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/editserverdialog.cpp b/src/gui/editserverdialog.cpp index 291ce9219..bdfbdd1d5 100644 --- a/src/gui/editserverdialog.cpp +++ b/src/gui/editserverdialog.cpp @@ -74,7 +74,7 @@ EditServerDialog::EditServerDialog(ServerDialog *const parent, mOkButton(new Button(this, _("OK"), "addServer", this)), mCancelButton(new Button(this, _("Cancel"), "cancel", this)), mTypeListModel(new TypeListModel), - mTypeField(new DropDown(this, mTypeListModel)), + mTypeField(new DropDown(this, mTypeListModel, false, true)), mServerDialog(parent), mServer(server), mIndex(index) |