mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Solve issue #847: Keyboard autofocus on search filed at startup
Signed-off-by: Ettore Dreucci <ettore.dreucci@gmail.com>
This commit is contained in:
parent
cd46a08f4a
commit
03bd346432
2 changed files with 6 additions and 1 deletions
|
@ -464,6 +464,11 @@ void MainWindow::setMenuActionState(DatabaseWidget::Mode mode)
|
|||
m_ui->actionDatabaseMerge->setEnabled(m_ui->tabWidget->currentIndex() != -1);
|
||||
|
||||
m_searchWidgetAction->setEnabled(true);
|
||||
|
||||
//if not already in search mode focus the search widget and select all its content
|
||||
if (!inSearch) {
|
||||
m_ui->toolBar->findChild<SearchWidget *>("SearchWidget")->searchFocus();
|
||||
}
|
||||
break;
|
||||
}
|
||||
case DatabaseWidget::EditMode:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue