mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Fix several issues with Quick Unlock (#9697)
* Fix #7892 - Pressing escape when the quick unlock prompt is shown will now go back to the main unlock dialog view. * Fix #9030 - Quick unlock will be automatically invoked in the unlock dialog upon being shown. * Fix #9554 - Quick unlock application setting will be updated every time the settings widget is shown instead of just on first launch. * Show warning that quick unlock is not enabled if user cancels Windows Hello prompt. This should limit people thinking there is a security issue. Also improve documentation describing this behavior. * Disable quick unlock in gui tests
This commit is contained in:
parent
5fb26d666a
commit
eee25a1c35
9 changed files with 51 additions and 15 deletions
|
@ -68,6 +68,8 @@ void TestGuiBrowser::initTestCase()
|
|||
config()->set(Config::GUI_ShowTrayIcon, true);
|
||||
// Disable the update check first time alert
|
||||
config()->set(Config::UpdateCheckMessageShown, true);
|
||||
// Disable quick unlock
|
||||
config()->set(Config::Security_QuickUnlock, false);
|
||||
|
||||
m_mainWindow.reset(new MainWindow());
|
||||
m_tabWidget = m_mainWindow->findChild<DatabaseTabWidget*>("tabWidget");
|
||||
|
|
|
@ -142,6 +142,8 @@ void TestGuiFdoSecrets::initTestCase()
|
|||
config()->set(Config::AutoSaveOnExit, false);
|
||||
config()->set(Config::GUI_ShowTrayIcon, true);
|
||||
config()->set(Config::UpdateCheckMessageShown, true);
|
||||
// Disable quick unlock
|
||||
config()->set(Config::Security_QuickUnlock, false);
|
||||
// Disable secret service integration (activate within individual tests to test the plugin)
|
||||
FdoSecrets::settings()->setEnabled(false);
|
||||
// activate within individual tests
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue