mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
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:
parent
faa4c07095
commit
3e3990934a
10 changed files with 64 additions and 51 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue