From 182fc379429c90d0139cee03b1b3229339d0c3b3 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Mon, 9 Oct 2006 15:02:33 +0000 Subject: [PATCH] Revert r24430 changes (by Magnus Olsen) since they are incorrect (additionally confirmed by Filip Navara) svn path=/trunk/; revision=24471 --- reactos/subsystems/win32/win32k/ntuser/winpos.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsystems/win32/win32k/ntuser/winpos.c b/reactos/subsystems/win32/win32k/ntuser/winpos.c index 3aa8c375897..bc1437cccce 100644 --- a/reactos/subsystems/win32/win32k/ntuser/winpos.c +++ b/reactos/subsystems/win32/win32k/ntuser/winpos.c @@ -1221,7 +1221,7 @@ co_WinPosSetWindowPos( } if (RgnType != ERROR && RgnType != NULLREGION) { - if ((Window->Parent == UserGetDesktopWindow()) && (Window->Style & WS_VISIBLE)) + if (Window->Parent) { NtGdiOffsetRgn(DirtyRgn, Window->WindowRect.left - Window->Parent->ClientRect.left, @@ -1229,7 +1229,7 @@ co_WinPosSetWindowPos( co_UserRedrawWindow(Window->Parent, NULL, DirtyRgn, RDW_ERASE | RDW_FRAME | RDW_INVALIDATE | RDW_ALLCHILDREN); } - else + else { NtGdiOffsetRgn(DirtyRgn, Window->WindowRect.left - Window->ClientRect.left,