mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Fix issues with locking database
* Fix #6593 - force close any modal dialogs associated with a database widget that is being locked. * Partial fix for #721 but doesn't address the problem of needing to save a modified entry or database while locking. * Also improves import dialog behavior if databases(s) lock while it is visible.
This commit is contained in:
parent
ffc72c896c
commit
505f338d28
3 changed files with 25 additions and 4 deletions
|
@ -1864,7 +1864,9 @@ void MainWindow::closeModalWindow()
|
|||
|
||||
void MainWindow::lockDatabasesAfterInactivity()
|
||||
{
|
||||
m_ui->tabWidget->lockDatabases();
|
||||
if (!m_ui->tabWidget->lockDatabases()) {
|
||||
m_inactivityTimer->activate();
|
||||
}
|
||||
}
|
||||
|
||||
bool MainWindow::isTrayIconEnabled() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue