Skip to content
Snippets Groups Projects
Commit d8e58eb4 authored by Pavel Roskin's avatar Pavel Roskin Committed by Alexandre Julliard
Browse files

obm_closed_95 should not be drawn inverted.

parent 26a83df8
No related branches found
No related tags found
No related merge requests found
......@@ -1070,7 +1070,7 @@ void NC_DrawCloseButton95 (HWND hwnd, HDC hdc, BOOL down)
GetObjectA (hBmp, sizeof(BITMAP), &bmp);
BitBlt (hdc, rect.right - (sysMetrics[SM_CYCAPTION] + 1 + bmp.bmWidth) / 2,
rect.top + (sysMetrics[SM_CYCAPTION] - 1 - bmp.bmHeight) / 2,
bmp.bmWidth, bmp.bmHeight, hdcMem, 0, 0, down ? NOTSRCCOPY : SRCCOPY);
bmp.bmWidth, bmp.bmHeight, hdcMem, 0, 0, SRCCOPY);
SelectObject (hdcMem, hOldBmp);
DeleteDC (hdcMem);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment