mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
- size of the close bitmap is now 16x14, i'd like to convert this to an icon like it's supposed to be, do we have icon support yet?
svn path=/trunk/; revision=5954
This commit is contained in:
parent
13dddecf2d
commit
c49c4f3c5e
2 changed files with 2 additions and 2 deletions
Binary file not shown.
Before Width: | Height: | Size: 246 B After Width: | Height: | Size: 230 B |
|
@ -1,4 +1,4 @@
|
|||
/* $Id: defwnd.c,v 1.75 2003/08/29 11:00:19 gvg Exp $
|
||||
/* $Id: defwnd.c,v 1.76 2003/08/31 14:25:28 rcampbell Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS user32.dll
|
||||
|
@ -320,7 +320,7 @@ UserDrawSysMenuButton(HWND hWnd, HDC hDC, LPRECT Rect, BOOL down)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
BitBlt(hDC, Rect->left + 2, Rect->top + 2, 16, 16, hDcMem,
|
||||
BitBlt(hDC, Rect->left + 2, Rect->top + 3, 16, 14, hDcMem,
|
||||
(GetWindowLongW(hWnd, GWL_STYLE) & WS_CHILD) ?
|
||||
GetSystemMetrics(SM_CXSIZE): 0, 0, SRCCOPY);
|
||||
|
||||
|
|
Loading…
Reference in a new issue