Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Kleopatra
Commits
e8c91dbd
Unverified
Commit
e8c91dbd
authored
Aug 05, 2022
by
Andre Heinecke
Browse files
Fix another c++20 initializer
This was overlooked in the last commit
parent
1af932cf
Pipeline
#213442
passed with stage
in 2 minutes and 31 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/conf/groupsconfigdialog.cpp
View file @
e8c91dbd
...
...
@@ -92,7 +92,8 @@ GroupsConfigDialog::GroupsConfigDialog(QWidget *parent)
const
auto
*
const
item
=
addPage
(
d
->
configPage
,
i18n
(
"Groups"
),
/*pixmapName=*/
QString
(),
/*header=*/
QString
(),
/*manage=*/
false
);
// prevent scroll area embedding the config page from receiving focus
for
(
const
auto
scrollAreas
=
item
->
widget
()
->
findChildren
<
QScrollArea
*>
();
auto
sa
:
scrollAreas
)
{
const
auto
scrollAreas
=
item
->
widget
()
->
findChildren
<
QScrollArea
*>
();
for
(
auto
sa
:
scrollAreas
)
{
sa
->
setFocusPolicy
(
Qt
::
NoFocus
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment