From 3897fba9aaffdcef7d47f15deed30fff240f6015 Mon Sep 17 00:00:00 2001 From: James Tabor Date: Tue, 8 Sep 2015 14:18:56 +0000 Subject: [PATCH] [Win32k] - Fix non-client paint. See CORE-10101. svn path=/trunk/; revision=69118 --- reactos/win32ss/user/ntuser/nonclient.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reactos/win32ss/user/ntuser/nonclient.c b/reactos/win32ss/user/ntuser/nonclient.c index 325c17b9523..dcefc8b00e8 100644 --- a/reactos/win32ss/user/ntuser/nonclient.c +++ b/reactos/win32ss/user/ntuser/nonclient.c @@ -1041,9 +1041,11 @@ NC_DoNCPaint(PWND pWnd, HDC hDC, INT Flags) { Active = (gpqForeground == pWnd->head.pti->MessageQueue); } + Flags = DC_NC; // Redraw everything! } + else + Flags |= DC_NC; - Flags = DC_NC; // Redraw everything! IntGetWindowRect(pWnd, &WindowRect);