mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-10-14 03:20:22 +00:00
[idd] helper/CWindow: use sane value for hbrBackground
This commit is contained in:
@@ -13,7 +13,7 @@ void CWindow::populateWindowClass(WNDCLASSEX &wx)
|
|||||||
wx.hIcon = LoadIcon(NULL, IDI_APPLICATION);
|
wx.hIcon = LoadIcon(NULL, IDI_APPLICATION);
|
||||||
wx.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
|
wx.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
|
||||||
wx.hCursor = LoadCursor(NULL, IDC_ARROW);
|
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)
|
LRESULT CWindow::wndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||||||
|
Reference in New Issue
Block a user