From 2af5ce906e89a7051e59ef6f99f04f1cd580bf35 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Fri, 19 Oct 2012 12:26:40 -0500 Subject: [PATCH] Add comment about missing way to get symbolic icons for bookmarks Nautilus got the ability to do that in commit 0ed400b9c1692e42498bff3c10780073ec137f63. Maybe we should just copy that code to here later. --- gtk/gtkplacessidebar.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk/gtkplacessidebar.c b/gtk/gtkplacessidebar.c index c8b27efb17..7f1bcfa601 100644 --- a/gtk/gtkplacessidebar.c +++ b/gtk/gtkplacessidebar.c @@ -971,6 +971,10 @@ update_places (GtkPlacesSidebar *sidebar) if (bookmark_name == NULL) bookmark_name = g_strdup (g_file_info_get_display_name (info)); + /* FIXME: in commit 0ed400b9c1692e42498bff3c10780073ec137f63, nautilus added the ability + * to get a symbolic icon for bookmarks. We don't have that machinery. Should we + * just copy that code? + */ icon = g_file_info_get_icon (info); mount_uri = g_file_get_uri (root);