mirror of
https://github.com/reactos/reactos.git
synced 2025-02-21 16:04:57 +00:00
[COMCTL32] Button: Don't use a class brush. CORE-13445
This commit is contained in:
parent
cfcca53856
commit
34c563fa2a
1 changed files with 1 additions and 1 deletions
|
@ -1892,7 +1892,7 @@ void BUTTON_Register()
|
|||
wndClass.cbClsExtra = 0;
|
||||
wndClass.cbWndExtra = sizeof(PBUTTON_DATA);
|
||||
wndClass.hCursor = LoadCursorW(0, (LPCWSTR)IDC_ARROW);
|
||||
wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
|
||||
wndClass.hbrBackground = 0;
|
||||
wndClass.lpszClassName = WC_BUTTONW;
|
||||
|
||||
RegisterClassW(&wndClass);
|
||||
|
|
Loading…
Reference in a new issue