Author: tkreuzer
Date: Fri Jan 9 21:39:01 2009
New Revision: 38675
URL:
http://svn.reactos.org/svn/reactos?rev=38675&view=rev
Log:
Register the correct windows, fixes the problem that explorer_new's desktop was hiding
the taskbar.
Modified:
trunk/reactos/dll/win32/shell32/desktop.c
Modified: trunk/reactos/dll/win32/shell32/desktop.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/desktop.…
==============================================================================
--- trunk/reactos/dll/win32/shell32/desktop.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/desktop.c [iso-8859-1] Fri Jan 9 21:39:01 2009
@@ -281,8 +281,8 @@
if (SUCCEEDED (IShellDesktop_GetTrayWindow(This->ShellDesk,
&hwndTray)))
{
- SetShellWindowEx (hwndTray,
- This->hWnd);
+ SetShellWindowEx (This->hWnd,
+ hwndTray); // FIXME: Shouldn't this be the desktop
listview?
}
return TRUE;
}