This commit is contained in:
Alex Hirsch 2025-01-19 07:30:50 +00:00 committed by GitHub
commit 45ce9bd454
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1146,11 +1146,6 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM l
break;
}
case WM_ERASEBKGND:
{
return TRUE;
}
case WM_NCACTIVATE:
case WM_NCPAINT:
{
@ -1289,6 +1284,7 @@ static int createNativeWindow(_GLFWwindow* window,
wc.lpfnWndProc = windowProc;
wc.hInstance = _glfw.win32.instance;
wc.hCursor = LoadCursorW(NULL, IDC_ARROW);
wc.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);
#if defined(_GLFW_WNDCLASSNAME)
wc.lpszClassName = _GLFW_WNDCLASSNAME;
#else