mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-25 15:55:38 -04:00
Don't obscure password field after invalid password attempt if setting is off (#2353)
This commit is contained in:
parent
4e1d3bfd73
commit
5bf4f51389
3 changed files with 8 additions and 1 deletions
|
@ -184,7 +184,9 @@ void DatabaseOpenWidget::openDatabase()
|
|||
return;
|
||||
}
|
||||
|
||||
m_ui->editPassword->setShowPassword(false);
|
||||
if (!m_ui->editPassword->isPasswordVisible()) {
|
||||
m_ui->editPassword->setShowPassword(false);
|
||||
}
|
||||
QCoreApplication::processEvents();
|
||||
|
||||
QFile file(m_filename);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue