shell32: Only notify immediate parent.

This commit is contained in:
Lei Zhang 2007-11-20 12:41:08 -08:00 committed by Alexandre Julliard
parent fa057686bb
commit cb99cd331d

View file

@ -267,7 +267,7 @@ static BOOL should_notify( LPCITEMIDLIST changed, LPCITEMIDLIST watched, BOOL su
return FALSE;
if (ILIsEqual( watched, changed ) )
return TRUE;
if( sub && ILIsParent( watched, changed, FALSE ) )
if( sub && ILIsParent( watched, changed, TRUE ) )
return TRUE;
return FALSE;
}