diff options
Diffstat (limited to 'src/gui/windows/editserverdialog.cpp')
-rw-r--r-- | src/gui/windows/editserverdialog.cpp | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/gui/windows/editserverdialog.cpp b/src/gui/windows/editserverdialog.cpp index 3b454466f..a659612fb 100644 --- a/src/gui/windows/editserverdialog.cpp +++ b/src/gui/windows/editserverdialog.cpp @@ -47,11 +47,16 @@ EditServerDialog::EditServerDialog(ServerDialog *const parent, Window(_("Edit Server"), Modal_true, parent), ActionListener(), KeyListener(), - mServerAddressField(new TextField(this, std::string())), - mPortField(new TextField(this, std::string())), - mNameField(new TextField(this, std::string())), - mDescriptionField(new TextField(this, std::string())), - mOnlineListUrlField(new TextField(this, std::string())), + mServerAddressField(new TextField(this, std::string(), + LoseFocusOnTab_true, nullptr, std::string(), false)), + mPortField(new TextField(this, std::string(), + LoseFocusOnTab_true, nullptr, std::string(), false)), + mNameField(new TextField(this, std::string(), + LoseFocusOnTab_true, nullptr, std::string(), false)), + mDescriptionField(new TextField(this, std::string(), + LoseFocusOnTab_true, nullptr, std::string(), false)), + mOnlineListUrlField(new TextField(this, std::string(), + LoseFocusOnTab_true, nullptr, std::string(), false)), mPacketVersionField(new IntTextField(this, 0, 0, maxPacketVersion, Enable_true, 0)), // TRANSLATORS: edit server dialog button |