launch Nautilus with --no-desktop for the home key so we don't mess up the

2007-11-28  Jens Granseuer  <jensgr@gmx.net>

	* gnome-settings-multimedia-keys.c: (do_action): launch Nautilus with
	--no-desktop for the home key so we don't mess up the desktop for
	people using something else to manage the background (bug #500085)

svn path=/trunk/; revision=8301
This commit is contained in:
Jens Granseuer 2007-11-28 18:18:18 +00:00 committed by Jens Granseuer
parent 4b78e6e868
commit facf5c5730
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2007-11-28 Jens Granseuer <jensgr@gmx.net>
* gnome-settings-multimedia-keys.c: (do_action): launch Nautilus with
--no-desktop for the home key so we don't mess up the desktop for
people using something else to manage the background (bug #500085)
2007-11-18 Jens Granseuer <jensgr@gmx.net>
Patch by: Dan Winship <danw@novell.com>

View file

@ -695,7 +695,7 @@ do_action (Acme *acme, int type)
break;
case HOME_KEY:
path = g_shell_quote (g_get_home_dir ());
cmd = g_strconcat ("nautilus ", path, NULL);
cmd = g_strconcat ("nautilus --no-desktop", path, NULL);
g_free (path);
execute (acme, cmd, FALSE, FALSE);
g_free (cmd);