From 2439cc7bbef39b289678d3f7474d93c63c9debd7 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Tue, 20 Nov 2007 12:41:08 -0800 Subject: [PATCH] shell32: only notify immediate parent --- dlls/shell32/changenotify.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/shell32/changenotify.c b/dlls/shell32/changenotify.c index c88ca1f..4cd17e9 100644 --- a/dlls/shell32/changenotify.c +++ b/dlls/shell32/changenotify.c @@ -267,7 +267,7 @@ static BOOL should_notify( LPCITEMIDLIST return FALSE; if (ILIsEqual( watched, changed ) ) return TRUE; - if( sub && ILIsParent( watched, changed, FALSE ) ) + if( sub && ILIsParent( watched, changed, TRUE ) ) return TRUE; return FALSE; } -- 1.4.1