correctly set the desktop bkcolor

svn path=/trunk/; revision=30900
This commit is contained in:
Christoph von Wittich 2007-11-29 20:47:33 +00:00
parent c6a485b0c0
commit 1730b3a891

View file

@ -355,7 +355,10 @@ static BOOL ShellView_CreateList (IShellViewImpl * This)
if (0)
SendMessageW(This->hWndList, LVM_SETTEXTBKCOLOR, 0, CLR_NONE);
else
{
SendMessageW(This->hWndList, LVM_SETTEXTBKCOLOR, 0, GetSysColor(COLOR_DESKTOP));
SendMessageW(This->hWndList, LVM_SETBKCOLOR, 0, GetSysColor(COLOR_DESKTOP));
}
SendMessageW(This->hWndList, LVM_SETTEXTCOLOR, 0, RGB(255,255,255));
}