From 0b37a8a9c2efaeb5fa5a385e60736fdcd66619b6 Mon Sep 17 00:00:00 2001 From: Lucas Murray Date: Sat, 26 Dec 2009 02:44:34 +0000 Subject: [PATCH] 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 --- effects/slidingpopups/slidingpopups.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/effects/slidingpopups/slidingpopups.cpp b/effects/slidingpopups/slidingpopups.cpp index 864fd930c8..2ab69b4cbb 100644 --- a/effects/slidingpopups/slidingpopups.cpp +++ b/effects/slidingpopups/slidingpopups.cpp @@ -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;