Commit cb99cd33 authored by Lei Zhang's avatar Lei Zhang Committed by Alexandre Julliard

shell32: Only notify immediate parent.

parent fa057686
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment