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:
Jonathan White 2018-11-15 17:37:16 -05:00
parent 4b983251cb
commit d6ffee5e99
No known key found for this signature in database
GPG key ID: 440FC65F2E0C6E01
3 changed files with 18 additions and 1 deletions

View file

@ -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;