reove the window from the ignored list of the fade effect if the sliding

effect gets removed

svn path=/trunk/KDE/kdebase/workspace/; revision=1021482
This commit is contained in:
Marco Martin 2009-09-09 10:05:52 +00:00
parent 96f8952062
commit e35a07a08d

View file

@ -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<FadeEffectProxy*>( effects->getProxy( "fade" ) );
if( proxy )
proxy->setWindowIgnored(w, false);
return;
}
long* d = reinterpret_cast< long* >( data.data());
Data animData;
animData.start = d[ 0 ];