mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Fix changing focus around the main window using tab
* Override Qt's default [broken] behavior of handling Tab/Shift+Tab to navigate around the MainWindow. Completely fixes trapped focus. * Improve handling of search results when navigating the UI. * Fix selecting first entry after ending a search. * Add keyboard shortcuts to directly focus on search (F1), Group List (F2), and Entry List (F3) * Fixes #2878, #4636, and #4221
This commit is contained in:
parent
5142981018
commit
49487f9d4a
11 changed files with 129 additions and 66 deletions
|
@ -82,6 +82,8 @@ EntryPreviewWidget::EntryPreviewWidget(QWidget* parent)
|
|||
connect(m_ui->groupCloseButton, SIGNAL(clicked()), SLOT(hide()));
|
||||
connect(m_ui->groupTabWidget, SIGNAL(tabBarClicked(int)), SLOT(updateTabIndexes()), Qt::QueuedConnection);
|
||||
|
||||
setFocusProxy(m_ui->entryTabWidget);
|
||||
|
||||
#if !defined(WITH_XC_KEESHARE)
|
||||
removeTab(m_ui->groupTabWidget, m_ui->groupShareTab);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue