mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 14:07:38 +03:00
Add tags feature
* show the tags in the entry preview * allow searching by tag * add a sidebar listing the tags in the database * filter entries by tag on click * Introduce a new TagsEdit widget that provides pill aesthetics, fast removal functionality and autocompletion * add tests for the tags feature * introduce the "is" tag for searching. Support for weak passwords and expired added.
This commit is contained in:
parent
56a1b465a1
commit
4a21cee98c
33 changed files with 1541 additions and 73 deletions
|
@ -1337,7 +1337,11 @@ bool MainWindow::focusNextPrevChild(bool next)
|
|||
// Search Widget <-> Tab Widget <-> DbWidget
|
||||
if (next) {
|
||||
if (m_searchWidget->hasFocus()) {
|
||||
m_ui->tabWidget->setFocus(Qt::TabFocusReason);
|
||||
if (m_ui->tabWidget->count() > 1) {
|
||||
m_ui->tabWidget->setFocus(Qt::TabFocusReason);
|
||||
} else {
|
||||
dbWidget->setFocus(Qt::TabFocusReason);
|
||||
}
|
||||
} else if (m_ui->tabWidget->hasFocus()) {
|
||||
dbWidget->setFocus(Qt::TabFocusReason);
|
||||
} else {
|
||||
|
@ -1349,7 +1353,11 @@ bool MainWindow::focusNextPrevChild(bool next)
|
|||
} else if (m_ui->tabWidget->hasFocus()) {
|
||||
focusSearchWidget();
|
||||
} else {
|
||||
m_ui->tabWidget->setFocus(Qt::BacktabFocusReason);
|
||||
if (m_ui->tabWidget->count() > 1) {
|
||||
m_ui->tabWidget->setFocus(Qt::BacktabFocusReason);
|
||||
} else {
|
||||
focusSearchWidget();
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue