diff --git a/effects/dimscreen/dimscreen.cpp b/effects/dimscreen/dimscreen.cpp index 7d53b67dfa..4f0fb5a0b7 100644 --- a/effects/dimscreen/dimscreen.cpp +++ b/effects/dimscreen/dimscreen.cpp @@ -80,8 +80,7 @@ void DimScreenEffect::postPaintScreen() void DimScreenEffect::paintWindow( EffectWindow *w, int mask, QRegion region, WindowPaintData &data ) { - if( mActivated && ( w != window ) && - !( w->isComboBox() || w->isDropdownMenu() || w->isTooltip() ) ) + if( mActivated && ( w != window ) && w->isManaged() ) { data.brightness *= (1.0 - 0.33 * timeline.value() ); data.saturation *= (1.0 - 0.33 * timeline.value() );