mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Use unlock dialog when unlocking a database from browser extension
This commit is contained in:
parent
09f5a74a15
commit
92a7fe33bd
5 changed files with 33 additions and 9 deletions
|
@ -755,3 +755,11 @@ void DatabaseTabWidget::performGlobalAutoType()
|
|||
unlockDatabaseInDialog(currentDatabaseWidget(), DatabaseOpenDialog::Intent::AutoType);
|
||||
}
|
||||
}
|
||||
|
||||
void DatabaseTabWidget::performBrowserUnlock()
|
||||
{
|
||||
auto dbWidget = currentDatabaseWidget();
|
||||
if (dbWidget && dbWidget->isLocked()) {
|
||||
unlockDatabaseInDialog(dbWidget, DatabaseOpenDialog::Intent::Browser);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue