mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Add hasKey property to database and also make it accessible via the DatabaseWidget.
This commit is contained in:
parent
af8e21f125
commit
eb4f82a7ed
4 changed files with 17 additions and 1 deletions
|
@ -161,7 +161,7 @@ void DatabaseWidget::updateMasterKey(bool accepted)
|
|||
m_db->setKey(m_changeMasterKeyWidget->newMasterKey());
|
||||
|
||||
}
|
||||
else if (m_db->transformedMasterKey().isEmpty()) { // TODO other test?
|
||||
else if (m_db->hasKey()) {
|
||||
Q_EMIT closeRequest();
|
||||
return;
|
||||
}
|
||||
|
@ -184,3 +184,8 @@ void DatabaseWidget::switchToMasterKeyChange()
|
|||
m_changeMasterKeyWidget->clearForms();
|
||||
setCurrentIndex(3);
|
||||
}
|
||||
|
||||
bool DatabaseWidget::dbHasKey()
|
||||
{
|
||||
return m_db->hasKey();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue