Only apply the sliding popups desktop effect to deleted windows that
it's supposed to instead of all of them. svn path=/trunk/KDE/kdebase/workspace/; revision=1066145
This commit is contained in:
parent
ffd49a14b4
commit
0b37a8a9c2
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ void SlidingPopupsEffect::paintWindow( EffectWindow* w, int mask, QRegion region
|
|||
appearing = true;
|
||||
animating = true;
|
||||
}
|
||||
else if( mDisappearingWindows.contains( w ) || w->isDeleted() )
|
||||
else if( mDisappearingWindows.contains( w ) && w->isDeleted() )
|
||||
{
|
||||
appearing = false;
|
||||
animating = true;
|
||||
|
|
Loading…
Reference in a new issue