Fix focus traps

* Fix focus issues with new PasswordWidget
* Fix focus wrapping when DatabaseTabWidget is not showing the tab bar
* Fix focus wrapping in EditWidget views to move between category list and contents. This is not a perfect fix, but Qt has a mind of its own with these complex widgets. This will be fixed in future Ui improvements that move away from the category widget.
This commit is contained in:
Jonathan White 2022-10-01 11:57:47 -04:00
parent faa4c07095
commit 3e3990934a
10 changed files with 64 additions and 51 deletions

View file

@ -76,9 +76,11 @@ void DatabaseTabWidget::toggleTabbar()
{
if (count() > 1) {
tabBar()->show();
setFocusPolicy(Qt::StrongFocus);
emit tabVisibilityChanged(true);
} else {
tabBar()->hide();
setFocusPolicy(Qt::NoFocus);
emit tabVisibilityChanged(false);
}
}