From 387249a2a2c09b81b2efb52480bca82c22e7cccf Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 10 Jan 2009 03:39:01 +0000 Subject: [PATCH] Register the correct windows, fixes the problem that explorer_new's desktop was hiding the taskbar. svn path=/trunk/; revision=38675 --- reactos/dll/win32/shell32/desktop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/dll/win32/shell32/desktop.c b/reactos/dll/win32/shell32/desktop.c index df8a343567c..3e69ba4c0e6 100644 --- a/reactos/dll/win32/shell32/desktop.c +++ b/reactos/dll/win32/shell32/desktop.c @@ -281,8 +281,8 @@ SHDESK_CreateDeskWnd(SHDESK *This) 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; }