From ebeedba072978310507705839fd2151403289dc4 Mon Sep 17 00:00:00 2001 From: Florian Geyer Date: Mon, 28 Sep 2015 22:26:13 +0200 Subject: [PATCH] Reset visibility state of password field on unlocking. Closes #354 --- src/gui/UnlockDatabaseWidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/UnlockDatabaseWidget.cpp b/src/gui/UnlockDatabaseWidget.cpp index 944198be1..242b07a82 100644 --- a/src/gui/UnlockDatabaseWidget.cpp +++ b/src/gui/UnlockDatabaseWidget.cpp @@ -33,5 +33,6 @@ void UnlockDatabaseWidget::clearForms() m_ui->comboKeyFile->clear(); m_ui->checkPassword->setChecked(false); m_ui->checkKeyFile->setChecked(false); + m_ui->buttonTogglePassword->setChecked(false); m_db = Q_NULLPTR; }