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:
parent
96f8952062
commit
e35a07a08d
1 changed files with 8 additions and 0 deletions
|
@ -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 ];
|
||||
|
|
Loading…
Reference in a new issue