From 81145e509cdba68c94c4173e16ddd492cd813db8 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 26 Dec 2017 19:34:40 +0300 Subject: Remove default parameters from textfield. --- src/gui/windows/editserverdialog.cpp | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'src/gui/windows/editserverdialog.cpp') 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 -- cgit v1.2.3-70-g09d2