From 25ea88907da8cb5433bc9ee2a9f43cc5fa864399 Mon Sep 17 00:00:00 2001 From: Iain Holmes Date: Thu, 5 Jul 2001 19:25:28 +0000 Subject: Special case the My Evolution uri so that the correct icon appears in the shortcut bar. svn path=/trunk/; revision=10822 --- shell/e-shortcuts-view.c | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) (limited to 'shell/e-shortcuts-view.c') diff --git a/shell/e-shortcuts-view.c b/shell/e-shortcuts-view.c index 32aa46fa56..0b07bce156 100644 --- a/shell/e-shortcuts-view.c +++ b/shell/e-shortcuts-view.c @@ -104,18 +104,23 @@ icon_callback (EShortcutBar *shortcut_bar, storage_set = e_shortcuts_get_storage_set (shortcuts); folder_type_registry = e_storage_set_get_folder_type_registry (storage_set); - folder = e_storage_set_get_folder (storage_set, - get_storage_set_path_from_uri (uri)); - - if (folder == NULL) - return NULL; - - type = e_folder_get_type_string (folder); - if (type == NULL) - return NULL; + if (strcmp ("evolution:/My Evolution", uri) == 0) { + type = g_strdup ("My Evolution"); + } else { + folder = e_storage_set_get_folder (storage_set, + get_storage_set_path_from_uri (uri)); + + if (folder == NULL) + return NULL; + + type = g_strdup (e_folder_get_type_string (folder)); + if (type == NULL) + return NULL; + } /* FIXME mini icons? */ pixbuf = e_folder_type_registry_get_icon_for_type (folder_type_registry, type, FALSE); + g_free (type); if (pixbuf != NULL) gdk_pixbuf_ref (pixbuf); -- cgit