diff options
author | asuratva <asuratva@proton.me> | 2025-06-27 23:55:45 +0000 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2025-06-27 23:55:45 +0000 |
commit | 427c4ba42ff64cdf4f9c370cfd9c29785a85d27c (patch) | |
tree | 3cfc58dff2a1327ef98c9bdd0264df57286bd91e /src | |
parent | 7055dda83c023ddff85add72c9d20501224b810a (diff) | |
download | plus-master.tar.gz plus-master.tar.bz2 plus-master.tar.xz plus-master.zip |
Previous commit from MR !194 changed requiring password to
requiring char name for confirmation during deletion.
Text input can now be unmasked since user is
entering char name instead of password.
****
mana/plus!205
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/windows/charselectdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/windows/charselectdialog.cpp b/src/gui/windows/charselectdialog.cpp index 70bcbcf74..3ee5e5218 100644 --- a/src/gui/windows/charselectdialog.cpp +++ b/src/gui/windows/charselectdialog.cpp @@ -505,7 +505,7 @@ void CharSelectDialog::askPasswordForDeletion(const int index) // TRANSLATORS: email label. _("Enter character name:"), this, - true); + false); } mDeleteDialog->setActionEventId("try delete character"); mDeleteDialog->addActionListener(this); |