[nautilus] Go to default location (not root) when clicking on mount in sidebar
- From: Alexander Larsson <alexl src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [nautilus] Go to default location (not root) when clicking on mount in sidebar
- Date: Fri, 27 Nov 2009 12:15:25 +0000 (UTC)
commit c125ec694bb7f7159cb72a3eb15f5845fc2c10ef
Author: Alexander Larsson <alexl redhat com>
Date: Fri Nov 27 13:09:42 2009 +0100
Go to default location (not root) when clicking on mount in sidebar
src/nautilus-places-sidebar.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/nautilus-places-sidebar.c b/src/nautilus-places-sidebar.c
index 9a87322..c8b0ff4 100644
--- a/src/nautilus-places-sidebar.c
+++ b/src/nautilus-places-sidebar.c
@@ -362,7 +362,7 @@ update_places (NautilusPlacesSidebar *sidebar)
if (mount != NULL) {
/* Show mounted volume in the sidebar */
icon = g_mount_get_icon (mount);
- root = g_mount_get_root (mount);
+ root = g_mount_get_default_location (mount);
mount_uri = g_file_get_uri (root);
name = g_mount_get_name (mount);
tooltip = g_file_get_parse_name (root);
@@ -438,7 +438,7 @@ update_places (NautilusPlacesSidebar *sidebar)
mount = g_volume_get_mount (volume);
if (mount != NULL) {
icon = g_mount_get_icon (mount);
- root = g_mount_get_root (mount);
+ root = g_mount_get_default_location (mount);
mount_uri = g_file_get_uri (root);
tooltip = g_file_get_parse_name (root);
g_object_unref (root);
@@ -483,7 +483,7 @@ update_places (NautilusPlacesSidebar *sidebar)
continue;
}
icon = g_mount_get_icon (mount);
- root = g_mount_get_root (mount);
+ root = g_mount_get_default_location (mount);
mount_uri = g_file_get_uri (root);
name = g_mount_get_name (mount);
tooltip = g_file_get_parse_name (root);
@@ -1496,7 +1496,7 @@ volume_mounted_cb (GVolume *volume,
mount = g_volume_get_mount (volume);
if (mount != NULL) {
- location = g_mount_get_root (mount);
+ location = g_mount_get_default_location (mount);
if (sidebar->go_to_after_mount_slot != NULL) {
if ((sidebar->go_to_after_mount_flags & NAUTILUS_WINDOW_OPEN_FLAG_NEW_WINDOW) == 0) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]