summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorasuratva <asuratva@proton.me>2025-06-27 23:55:45 +0000
committerFedja Beader <fedja@protonmail.ch>2025-06-27 23:55:45 +0000
commit427c4ba42ff64cdf4f9c370cfd9c29785a85d27c (patch)
tree3cfc58dff2a1327ef98c9bdd0264df57286bd91e
parent7055dda83c023ddff85add72c9d20501224b810a (diff)
downloadmanaplus-427c4ba42ff64cdf4f9c370cfd9c29785a85d27c.tar.gz
manaplus-427c4ba42ff64cdf4f9c370cfd9c29785a85d27c.tar.bz2
manaplus-427c4ba42ff64cdf4f9c370cfd9c29785a85d27c.tar.xz
manaplus-427c4ba42ff64cdf4f9c370cfd9c29785a85d27c.zip
unmask text input during character deletion
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
-rw-r--r--src/gui/windows/charselectdialog.cpp2
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);