From 2697544c10462aefaf7091c25d5bbbb3de90ab01 Mon Sep 17 00:00:00 2001 From: Diego Escalante Urrelo Date: Tue, 24 Apr 2007 19:45:19 +0000 Subject: Avoid opening nautilus if downloads are done to Desktop. This re-fixes bug 2007-04-24 Diego Escalante Urrelo * src/popup-commands.c: * lib/ephy-file-helpers.c: Avoid opening nautilus if downloads are done to Desktop. This re-fixes bug #383698. svn path=/trunk/; revision=7014 --- lib/ephy-file-helpers.c | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/ephy-file-helpers.c b/lib/ephy-file-helpers.c index 225a1af93..e34783d1f 100644 --- a/lib/ephy-file-helpers.c +++ b/lib/ephy-file-helpers.c @@ -1169,19 +1169,33 @@ gboolean ephy_file_browse_to (const char *parameter, guint32 user_time) { - GnomeVFSURI *uri, *parent_uri; + GnomeVFSURI *uri, *parent_uri, *desktop; + char *desktop_dir; gboolean ret; uri = gnome_vfs_uri_new (parameter); parent_uri = gnome_vfs_uri_get_parent (uri); - /* TODO find a way to make nautilus scroll to the actual file */ - ret = ephy_file_launch_handler ("x-directory/normal", - gnome_vfs_uri_get_path (parent_uri), - user_time); + desktop_dir = ephy_file_desktop_dir (); + desktop = gnome_vfs_uri_new (desktop_dir); + /* Don't do anything if destination is the desktop */ + if (gnome_vfs_uri_equal (desktop, parent_uri)) + { + ret = FALSE; + } + else + { + /* TODO find a way to make nautilus scroll to the actual file */ + ret = ephy_file_launch_handler ("x-directory/normal", + gnome_vfs_uri_get_path (parent_uri), + user_time); + } + + g_free (desktop_dir); gnome_vfs_uri_unref (uri); gnome_vfs_uri_unref (parent_uri); + gnome_vfs_uri_unref (desktop); return ret; } -- cgit v1.2.3