mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Streamlined searcher code
* Remove searching of group title and notes * End search when selecting a new group * Correct entry searcher tests to align with new code
This commit is contained in:
parent
a5e7da67d8
commit
d8d758f0e1
7 changed files with 39 additions and 60 deletions
|
@ -1047,9 +1047,12 @@ void DatabaseWidget::setSearchLimitGroup(bool state)
|
|||
|
||||
void DatabaseWidget::onGroupChanged(Group* group)
|
||||
{
|
||||
// Intercept group changes if in search mode
|
||||
if (isInSearchMode()) {
|
||||
if (isInSearchMode() && m_searchLimitGroup) {
|
||||
// Perform new search if we are limiting search to the current group
|
||||
search(m_lastSearchText);
|
||||
} else if (isInSearchMode()) {
|
||||
// Otherwise cancel search
|
||||
emit clearSearch();
|
||||
} else {
|
||||
m_entryView->setGroup(group);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue