[epiphany/downloads: 2/5] ephy-file-helpers: allow desktop in ephy_file_browse_to
- From: Diego Escalante Urrelo <diegoe src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [epiphany/downloads: 2/5] ephy-file-helpers: allow desktop in ephy_file_browse_to
- Date: Fri, 4 Mar 2011 17:48:34 +0000 (UTC)
commit 3bad1b3a38ec66a9c7f812b34728aea4c81284c6
Author: Diego Escalante Urrelo <descalante igalia com>
Date: Thu Jan 20 01:42:12 2011 -0500
ephy-file-helpers: allow desktop in ephy_file_browse_to
Nautilus doesn't draw the desktop as always anymore. It's not visible unless
you browse there, so the reason to not allow browse_to desktop is not valid
anymore.
Bug #618443
lib/ephy-file-helpers.c | 27 +++++++--------------------
1 files changed, 7 insertions(+), 20 deletions(-)
---
diff --git a/lib/ephy-file-helpers.c b/lib/ephy-file-helpers.c
index 5a6bc33..11c3906 100644
--- a/lib/ephy-file-helpers.c
+++ b/lib/ephy-file-helpers.c
@@ -848,29 +848,16 @@ gboolean
ephy_file_browse_to (GFile *file,
guint32 user_time)
{
- GFile *parent, *desktop;
- char *desktop_dir;
+ GFile *parent;
gboolean ret;
- desktop_dir = ephy_file_desktop_dir ();
- desktop = g_file_new_for_path (desktop_dir);
-
- /* Don't do anything if destination is the desktop */
- if (g_file_has_prefix (file, desktop))
- {
- ret = FALSE;
- }
- else
- {
- parent = g_file_get_parent (file);
- /* TODO find a way to make nautilus scroll to the actual file */
- ret = ephy_file_launch_handler ("x-directory/normal",
- parent,
- user_time);
- }
+ parent = g_file_get_parent (file);
+ /* TODO find a way to make nautilus scroll to the actual file */
+ ret = ephy_file_launch_handler ("x-directory/normal",
+ parent,
+ user_time);
- g_object_unref (desktop);
- g_free (desktop_dir);
+ g_object_unref (parent);
return ret;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]