aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJosselin Mouette <joss@debian.org>2011-07-17 07:59:58 +0800
committerDiego Escalante Urrelo <descalante@igalia.com>2011-07-17 08:29:07 +0800
commite1a78db5efc2773df289f91a5211da16ec2ba992 (patch)
treed6f1a4308102eed3e77fec69a2525d0bd40469a6 /lib
parent24a9296f2a31839e7a290f9a51cda18cdab70482 (diff)
downloadgsoc2013-epiphany-e1a78db5efc2773df289f91a5211da16ec2ba992.tar
gsoc2013-epiphany-e1a78db5efc2773df289f91a5211da16ec2ba992.tar.gz
gsoc2013-epiphany-e1a78db5efc2773df289f91a5211da16ec2ba992.tar.bz2
gsoc2013-epiphany-e1a78db5efc2773df289f91a5211da16ec2ba992.tar.lz
gsoc2013-epiphany-e1a78db5efc2773df289f91a5211da16ec2ba992.tar.xz
gsoc2013-epiphany-e1a78db5efc2773df289f91a5211da16ec2ba992.tar.zst
gsoc2013-epiphany-e1a78db5efc2773df289f91a5211da16ec2ba992.zip
ephy-file-helpers: use correct inode/directory type
Otherwise "Browse to" feature fails because we are using an obsolete mime type. Bug #651699
Diffstat (limited to 'lib')
-rw-r--r--lib/ephy-file-helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ephy-file-helpers.c b/lib/ephy-file-helpers.c
index d996c21ba..5b8c969ec 100644
--- a/lib/ephy-file-helpers.c
+++ b/lib/ephy-file-helpers.c
@@ -853,7 +853,7 @@ ephy_file_browse_to (GFile *file,
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",
+ ret = ephy_file_launch_handler ("inode/directory",
parent,
user_time);