diff --git a/effects/slidingpopups/slidingpopups.cpp b/effects/slidingpopups/slidingpopups.cpp index 1ba94cb570..07f1bffdea 100644 --- a/effects/slidingpopups/slidingpopups.cpp +++ b/effects/slidingpopups/slidingpopups.cpp @@ -184,7 +184,15 @@ void SlidingPopupsEffect::propertyNotify( EffectWindow* w, long a ) QByteArray data = w->readProperty( mAtom, mAtom, 32 ); if( data.length() < 1 ) + { + FadeEffectProxy* proxy = + static_cast( effects->getProxy( "fade" ) ); + if( proxy ) + proxy->setWindowIgnored(w, false); + return; + } + long* d = reinterpret_cast< long* >( data.data()); Data animData; animData.start = d[ 0 ];