mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Browser: Fix cancel with database unlock dialog (#11435)
This commit is contained in:
parent
bff0b93f5f
commit
2fc24be331
5 changed files with 23 additions and 1 deletions
|
@ -86,6 +86,10 @@ BrowserService::BrowserService()
|
|||
connect(getMainWindow(), &MainWindow::databaseUnlocked, this, &BrowserService::databaseUnlocked);
|
||||
connect(getMainWindow(), &MainWindow::databaseLocked, this, &BrowserService::databaseLocked);
|
||||
connect(getMainWindow(), &MainWindow::activeDatabaseChanged, this, &BrowserService::activeDatabaseChanged);
|
||||
connect(getMainWindow(),
|
||||
&MainWindow::databaseUnlockDialogFinished,
|
||||
this,
|
||||
&BrowserService::handleDatabaseUnlockDialogFinished);
|
||||
|
||||
setEnabled(browserSettings()->isEnabled());
|
||||
}
|
||||
|
@ -1678,6 +1682,15 @@ void BrowserService::activeDatabaseChanged(DatabaseWidget* dbWidget)
|
|||
m_currentDatabaseWidget = dbWidget;
|
||||
}
|
||||
|
||||
void BrowserService::handleDatabaseUnlockDialogFinished(bool accepted, DatabaseWidget* dbWidget)
|
||||
{
|
||||
// User canceled the database open dialog
|
||||
if (dbWidget && !accepted && m_bringToFrontRequested) {
|
||||
m_bringToFrontRequested = false;
|
||||
hideWindow();
|
||||
}
|
||||
}
|
||||
|
||||
void BrowserService::processClientMessage(QLocalSocket* socket, const QJsonObject& message)
|
||||
{
|
||||
auto clientID = message["clientID"].toString();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue