Browse Source

Merge pull request #17829 from Chocobo1/focus

Set proper focus on widget
adaptive-webui-19844
Chocobo1 2 years ago committed by GitHub
parent
commit
ce7d8dee28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      .github/workflows/coverity-scan.yml
  2. 4
      src/gui/fspathedit.cpp

1
.github/workflows/coverity-scan.yml

@ -60,6 +60,7 @@ jobs: @@ -60,6 +60,7 @@ jobs:
-G "Ninja" \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DGUI=ON \
-DQT6=ON \
-DVERBOSE_CONFIGURE=ON
export PATH="$(pwd)/coverity_tool/bin:$PATH"
cov-build --dir cov-int cmake --build build

4
src/gui/fspathedit.cpp

@ -178,6 +178,10 @@ FileSystemPathEdit::FileSystemPathEdit(Private::IFileEditorWithCompletion *edito @@ -178,6 +178,10 @@ FileSystemPathEdit::FileSystemPathEdit(Private::IFileEditorWithCompletion *edito
Q_D(FileSystemPathEdit);
editor->widget()->setParent(this);
setFocusProxy(editor->widget());
// required, otherwise the button cannot be selected via keyboard tab
setTabOrder(editor->widget(), d_ptr->m_browseBtn);
auto *layout = new QHBoxLayout(this);
layout->setContentsMargins(0, 0, 0, 0);
layout->addWidget(editor->widget());

Loading…
Cancel
Save