Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
bc913462
Commit
bc913462
authored
Aug 12, 2009
by
dt
Browse files
Fix flickering finally.
parent
ac3e37fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/buildstep.cpp
View file @
bc913462
...
...
@@ -137,8 +137,15 @@ bool BuildStep::immutable() const
void
BuildConfigWidget
::
fixupLayout
(
QWidget
*
widget
)
{
QWidget
*
parent
=
widget
;
while
((
parent
=
parent
->
parentWidget
())
&&
parent
&&
parent
->
layout
())
parent
->
layout
()
->
activate
();
QStack
<
QWidget
*>
widgets
;
while
((
parent
=
parent
->
parentWidget
())
&&
parent
&&
parent
->
layout
())
{
widgets
.
push
(
parent
);
parent
->
layout
()
->
update
();
}
while
(
!
widgets
.
isEmpty
())
{
widgets
.
pop
()
->
layout
()
->
activate
();
}
}
IBuildStepFactory
::
IBuildStepFactory
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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