mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 09:01:46 +00:00
Consume WM_ERASEBKGND.
This commit is contained in:
parent
5e008ad074
commit
4fb5da75dc
@ -733,6 +733,11 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
||||
break;
|
||||
}
|
||||
|
||||
case WM_ERASEBKGND:
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
case WM_SETCURSOR:
|
||||
{
|
||||
if (_glfw.focusedWindow == window && LOWORD(lParam) == HTCLIENT)
|
||||
|
Loading…
Reference in New Issue
Block a user