mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Multiple DatabaseTabWidget fixes.
Close databases on exit. Ask to save changes on database close. Remove database from db list on database close. Delete file pointer on database close. Require to set master key at database creation time. Append "*" to tabname if database is modified. Handle database modified signals in database tab widget.
This commit is contained in:
parent
e39827d777
commit
a058dcee5d
6 changed files with 97 additions and 11 deletions
|
@ -155,6 +155,11 @@ void DatabaseWidget::updateMasterKey(bool accepted)
|
|||
{
|
||||
if (accepted) {
|
||||
m_db->setKey(m_changeMasterKeyWidget->newMasterKey());
|
||||
|
||||
}
|
||||
else if (m_db->transformedMasterKey().isEmpty()) { // TODO other test?
|
||||
Q_EMIT closeRequest();
|
||||
return;
|
||||
}
|
||||
|
||||
setCurrentIndex(0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue