summaryrefslogtreecommitdiff
path: root/src/gui/windows/logindialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/windows/logindialog.cpp')
-rw-r--r--src/gui/windows/logindialog.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/gui/windows/logindialog.cpp b/src/gui/windows/logindialog.cpp
index ec895cf7f..53a50d4d5 100644
--- a/src/gui/windows/logindialog.cpp
+++ b/src/gui/windows/logindialog.cpp
@@ -83,11 +83,14 @@ LoginDialog::LoginDialog(LoginData &data,
mUpdateTypeDropDown(new DropDown(this, mUpdateTypeModel,
false, Modal_false, nullptr, std::string())),
// TRANSLATORS: login dialog button
- mServerButton(new Button(this, _("Change Server"), "server", this)),
+ mServerButton(new Button(this, _("Change Server"), "server",
+ BUTTON_SKIN, this)),
// TRANSLATORS: login dialog button
- mLoginButton(new Button(this, _("Login"), "login", this)),
+ mLoginButton(new Button(this, _("Login"), "login",
+ BUTTON_SKIN, this)),
// TRANSLATORS: login dialog button
- mRegisterButton(new Button(this, _("Register"), "register", this)),
+ mRegisterButton(new Button(this, _("Register"), "register",
+ BUTTON_SKIN, this)),
// TRANSLATORS: login dialog checkbox
mCustomUpdateHost(new CheckBox(this, _("Custom update host"),
(mLoginData->updateType & UpdateType::Custom) != 0,