mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
[Win32k]
- Fix non-client paint. See CORE-10101. svn path=/trunk/; revision=69118
This commit is contained in:
parent
d69d6cab4e
commit
3897fba9aa
1 changed files with 3 additions and 1 deletions
|
@ -1041,9 +1041,11 @@ NC_DoNCPaint(PWND pWnd, HDC hDC, INT Flags)
|
||||||
{
|
{
|
||||||
Active = (gpqForeground == pWnd->head.pti->MessageQueue);
|
Active = (gpqForeground == pWnd->head.pti->MessageQueue);
|
||||||
}
|
}
|
||||||
|
Flags = DC_NC; // Redraw everything!
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
Flags |= DC_NC;
|
||||||
|
|
||||||
Flags = DC_NC; // Redraw everything!
|
|
||||||
|
|
||||||
IntGetWindowRect(pWnd, &WindowRect);
|
IntGetWindowRect(pWnd, &WindowRect);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue