[idd] helper/CWindow: use sane value for hbrBackground

This commit is contained in:
Quantum
2025-09-15 20:41:53 -04:00
committed by Geoffrey McRae
parent 85e728b59e
commit e123e02e15

View File

@@ -13,7 +13,7 @@ void CWindow::populateWindowClass(WNDCLASSEX &wx)
wx.hIcon = LoadIcon(NULL, IDI_APPLICATION);
wx.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
wx.hCursor = LoadCursor(NULL, IDC_ARROW);
wx.hbrBackground = (HBRUSH)COLOR_APPWORKSPACE;
wx.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
}
LRESULT CWindow::wndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)