mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-23 15:00:47 -04:00
parent
0b71cb1dad
commit
deb0926497
1 changed files with 8 additions and 2 deletions
|
@ -615,10 +615,16 @@ void DatabaseOpenWidget::toggleQuickUnlockScreen()
|
|||
{
|
||||
if (canPerformQuickUnlock()) {
|
||||
m_ui->centralStack->setCurrentIndex(1);
|
||||
m_ui->quickUnlockButton->setFocus();
|
||||
// Work around qt issue where focus is stolen even if not visible
|
||||
if (m_ui->quickUnlockButton->isVisible()) {
|
||||
m_ui->quickUnlockButton->setFocus();
|
||||
}
|
||||
} else {
|
||||
m_ui->centralStack->setCurrentIndex(0);
|
||||
m_ui->editPassword->setFocus();
|
||||
// Work around qt issue where focus is stolen even if not visible
|
||||
if (m_ui->editPassword->isVisible()) {
|
||||
m_ui->editPassword->setFocus();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue