Register the correct windows, fixes the problem that explorer_new's desktop was hiding the taskbar.

svn path=/trunk/; revision=38675
This commit is contained in:
Timo Kreuzer 2009-01-10 03:39:01 +00:00
parent 13c77c4fcf
commit 387249a2a2

View file

@ -281,8 +281,8 @@ SHDESK_CreateDeskWnd(SHDESK *This)
if (SUCCEEDED (IShellDesktop_GetTrayWindow(This->ShellDesk, if (SUCCEEDED (IShellDesktop_GetTrayWindow(This->ShellDesk,
&hwndTray))) &hwndTray)))
{ {
SetShellWindowEx (hwndTray, SetShellWindowEx (This->hWnd,
This->hWnd); hwndTray); // FIXME: Shouldn't this be the desktop listview?
} }
return TRUE; return TRUE;
} }