mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Implement search auto-clear and goto group
* Search clears if the search box does not have focus for 5 minutes (fixes #2178) * Goto group from search results after double clicking the group name (fixes #2043)
This commit is contained in:
parent
4b983251cb
commit
d6ffee5e99
3 changed files with 18 additions and 1 deletions
|
@ -893,6 +893,14 @@ void DatabaseWidget::entryActivationSignalReceived(Entry* entry, EntryModel::Mod
|
|||
setupTotp();
|
||||
}
|
||||
break;
|
||||
case EntryModel::ParentGroup:
|
||||
// Call this first to clear out of search mode, otherwise
|
||||
// the desired entry is not properly selected
|
||||
endSearch();
|
||||
emit clearSearch();
|
||||
m_groupView->setCurrentGroup(entry->group());
|
||||
m_entryView->setCurrentEntry(entry);
|
||||
break;
|
||||
// TODO: switch to 'Notes' tab in details view/pane
|
||||
// case EntryModel::Notes:
|
||||
// break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue