Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests/gui
diff options
context:
space:
mode:
authorJonathan White <support@dmapps.us>2022-09-05 19:55:57 +0300
committerJonathan White <support@dmapps.us>2022-09-08 13:46:48 +0300
commite5bd5f39fb0951a6d31e08e1fb62865ceebe8620 (patch)
treefeda0fff0536971171d6cabcb6a0f4e2121d0954 /tests/gui
parentdfee59742f6f630df24178cada6eea1614004e70 (diff)
Use search for showing expired entries on unlock
* Fix #8036 - use search interface to display expiring entries on first unlock.
Diffstat (limited to 'tests/gui')
-rw-r--r--tests/gui/TestGui.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/gui/TestGui.cpp b/tests/gui/TestGui.cpp
index c00e3a10b..c1b339f33 100644
--- a/tests/gui/TestGui.cpp
+++ b/tests/gui/TestGui.cpp
@@ -111,6 +111,8 @@ void TestGui::init()
config()->set(Config::Security_QuickUnlock, false);
// Disable atomic saves to prevent transient errors on some platforms
config()->set(Config::UseAtomicSaves, false);
+ // Disable showing expired entries on unlock
+ config()->set(Config::GUI_ShowExpiredEntriesOnDatabaseUnlock, false);
// Copy the test database file to the temporary file
auto origFilePath = QDir(KEEPASSX_TEST_DATA_DIR).absoluteFilePath("NewDatabase.kdbx");