mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 14:07:38 +03:00
Added automatically saving DB after change
This commit is contained in:
parent
871cdc5bb8
commit
17f4e23215
4 changed files with 27 additions and 0 deletions
|
@ -523,8 +523,17 @@ void DatabaseTabWidget::modified()
|
|||
{
|
||||
Q_ASSERT(qobject_cast<Database*>(sender()));
|
||||
|
||||
if (config()->get("AutoSaveAfterEveryChange").toBool()) {
|
||||
config()->set("LastDatabases", QVariant());
|
||||
}
|
||||
Database* db = static_cast<Database*>(sender());
|
||||
DatabaseManagerStruct& dbStruct = m_dbList[db];
|
||||
|
||||
if (config()->get("AutoSaveAfterEveryChange").toBool() && dbStruct.file) {
|
||||
saveDatabase(db);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!dbStruct.modified) {
|
||||
dbStruct.modified = true;
|
||||
updateTabName(db);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue