mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Fix db history when adding new db (#9022)
Fixes https://github.com/keepassxreboot/keepassxc/issues/8375
This commit is contained in:
parent
32f2710430
commit
c20104e67c
5 changed files with 44 additions and 1 deletions
|
@ -244,6 +244,7 @@ void DatabaseTabWidget::addDatabaseTab(DatabaseWidget* dbWidget, bool inBackgrou
|
|||
SLOT(updateTabName()));
|
||||
connect(dbWidget, SIGNAL(databaseModified()), SLOT(updateTabName()));
|
||||
connect(dbWidget, SIGNAL(databaseSaved()), SLOT(updateTabName()));
|
||||
connect(dbWidget, SIGNAL(databaseSaved()), SLOT(updateLastDatabases()));
|
||||
connect(dbWidget, SIGNAL(databaseUnlocked()), SLOT(updateTabName()));
|
||||
connect(dbWidget, SIGNAL(databaseUnlocked()), SLOT(emitDatabaseLockChanged()));
|
||||
connect(dbWidget, SIGNAL(databaseLocked()), SLOT(updateTabName()));
|
||||
|
@ -829,6 +830,18 @@ void DatabaseTabWidget::updateLastDatabases(const QString& filename)
|
|||
}
|
||||
}
|
||||
|
||||
void DatabaseTabWidget::updateLastDatabases()
|
||||
{
|
||||
auto dbWidget = currentDatabaseWidget();
|
||||
|
||||
if (dbWidget) {
|
||||
auto filePath = dbWidget->database()->filePath();
|
||||
if (!filePath.isEmpty()) {
|
||||
updateLastDatabases(filePath);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void DatabaseTabWidget::emitActiveDatabaseChanged()
|
||||
{
|
||||
emit activeDatabaseChanged(currentDatabaseWidget());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue