From 9eb3f6a3db3d93a734a3514179013d69ca5b003d Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 6 Jun 2013 10:46:17 +0200 Subject: [PATCH] explorer: Don't worry about desktop launchers in non-desktop mode. --- programs/explorer/desktop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/explorer/desktop.c b/programs/explorer/desktop.c index c975e23a8f3..33b58dc3215 100644 --- a/programs/explorer/desktop.c +++ b/programs/explorer/desktop.c @@ -769,7 +769,7 @@ void manage_desktop( WCHAR *arg ) initialize_display_settings( hwnd ); initialize_appbar(); initialize_systray( graphics_driver, using_root ); - initialize_launchers( hwnd ); + if (!using_root) initialize_launchers( hwnd ); if ((shell32 = LoadLibraryA( "shell32.dll" )) && (pShellDDEInit = (void *)GetProcAddress( shell32, (LPCSTR)188)))