[SHELL32]

- CDefView: When we have to flicker don't use the worst possible color to erase the window but the background color of the list view. At least now some flickering will go unnoticed.

svn path=/trunk/; revision=69873
This commit is contained in:
Giannis Adamopoulos 2015-11-10 22:57:24 +00:00
parent c7278f382c
commit 0b81e76316

View file

@ -266,7 +266,7 @@ class CDefView :
{
{ sizeof(WNDCLASSEX), 0, StartWindowProc,
0, 0, NULL, NULL,
LoadCursor(NULL, IDC_ARROW), (HBRUSH)(COLOR_BACKGROUND + 1), NULL, SV_CLASS_NAME, NULL
LoadCursor(NULL, IDC_ARROW), (HBRUSH)(COLOR_WINDOW + 1), NULL, SV_CLASS_NAME, NULL
},
NULL, NULL, IDC_ARROW, TRUE, 0, _T("")
};