diff options
author | Fedja Beader <fedja@protonmail.ch> | 2025-06-05 00:37:53 +0200 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2025-06-05 00:40:03 +0200 |
commit | bb1bcacbb924e5d48e19018870f6ce09e12ac86b (patch) | |
tree | e855e91422674f34bc4385b31adcbd6756b92f41 | |
parent | 888d40c9182df69129547e3381ce6f10ee0d5661 (diff) | |
download | manaplus-charselect_clarify_switch.tar.gz manaplus-charselect_clarify_switch.tar.bz2 manaplus-charselect_clarify_switch.tar.xz manaplus-charselect_clarify_switch.zip |
Clarify what the Switch button does -> Switch Worldcharselect_clarify_switch
Or maybe Logout?
-rw-r--r-- | src/gui/windows/charselectdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/windows/charselectdialog.cpp b/src/gui/windows/charselectdialog.cpp index 66e7a886d..8bab7955c 100644 --- a/src/gui/windows/charselectdialog.cpp +++ b/src/gui/windows/charselectdialog.cpp @@ -72,7 +72,7 @@ CharSelectDialog::CharSelectDialog(LoginData &data) : KeyListener(), mLoginData(&data), // TRANSLATORS: char select dialog. button. - mSwitchLoginButton(new Button(this, _("Switch"), "switch", + mSwitchLoginButton(new Button(this, _("Switch World"), "switch_world", BUTTON_SKIN, this)), // TRANSLATORS: char select dialog. button. mChangePasswordButton(new Button(this, _("Password"), "change_password", @@ -284,7 +284,7 @@ void CharSelectDialog::action(const ActionEvent &event) 260); } } - if (eventId == "switch") + if (eventId == "switch_world") { charServerHandler->clear(); close(); |