From 445eb5362d410b35cf6a87c80309161e0414b648 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Sat, 21 Feb 2004 13:57:31 +0000 Subject: [PATCH] - Minor correction (again) svn path=/trunk/; revision=8289 --- reactos/subsys/win32k/ntuser/winpos.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/ntuser/winpos.c b/reactos/subsys/win32k/ntuser/winpos.c index 6c9bbf0725c..49003f7b8b3 100644 --- a/reactos/subsys/win32k/ntuser/winpos.c +++ b/reactos/subsys/win32k/ntuser/winpos.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: winpos.c,v 1.95 2004/02/21 13:51:13 navaraf Exp $ +/* $Id: winpos.c,v 1.96 2004/02/21 13:57:31 navaraf Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -1022,7 +1022,7 @@ WinPosSetWindowPos(HWND Wnd, HWND WndInsertAfter, INT x, INT y, INT cx, NtGdiDeleteObject(VisAfter); } - if (!(WinPos.flags & SWP_NOREDRAW) && IntIsWindowVisible(Window)) + if (!(WinPos.flags & SWP_NOREDRAW)) { IntRedrawWindow(Window, NULL, 0, RDW_ALLCHILDREN | RDW_ERASENOW); }