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
diff options
context:
space:
mode:
authorJonathan White <support@dmapps.us>2020-09-28 05:17:57 +0300
committerJonathan White <support@dmapps.us>2020-10-20 04:31:42 +0300
commit59b8b13146d0a244407c51eb3756cf9ff4eee34b (patch)
tree5c1423f00d9f6f4fc46c5a5be93a411657c3f209 /src/gui/DatabaseWidget.cpp
parentb10a55a547af321ebe9365ca6ca3932ecd02099b (diff)
Force set entry preview after search ends
* Fixes #5093
Diffstat (limited to 'src/gui/DatabaseWidget.cpp')
-rw-r--r--src/gui/DatabaseWidget.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/DatabaseWidget.cpp b/src/gui/DatabaseWidget.cpp
index 9a1bd0590..505e7f0ba 100644
--- a/src/gui/DatabaseWidget.cpp
+++ b/src/gui/DatabaseWidget.cpp
@@ -1427,6 +1427,8 @@ void DatabaseWidget::endSearch()
m_entryView->displayGroup(currentGroup());
emit listModeActivated();
m_entryView->setFirstEntryActive();
+ // Enforce preview view update (prevents stale information if focus group is empty)
+ m_previewView->setEntry(currentSelectedEntry());
}
m_searchingLabel->setVisible(false);