[libslab] Make icons on document tab work fine
- From: Vincent Untz <vuntz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libslab] Make icons on document tab work fine
- Date: Mon, 28 Jun 2010 13:05:06 +0000 (UTC)
commit 0146fb1e2a4bfc1a9b1c201e833ad3b361ff20be
Author: Vincent Untz <vuntz gnome org>
Date: Mon Jun 28 15:02:51 2010 +0200
Make icons on document tab work fine
We were simply not using the GIcon we got from the mime type.
https://bugzilla.gnome.org/show_bug.cgi?id=614339
libslab/document-tile.c | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/libslab/document-tile.c b/libslab/document-tile.c
index eacd131..99bde93 100644
--- a/libslab/document-tile.c
+++ b/libslab/document-tile.c
@@ -432,7 +432,7 @@ load_image (DocumentTile *tile)
gchar *icon_id = NULL;
gboolean free_icon_id = TRUE;
GnomeDesktopThumbnailFactory *thumbnail_factory;
- GIcon *icon;
+ GIcon *icon = NULL;
libslab_checkpoint ("document-tile.c: load_image(): start for %s", TILE (tile)->uri);
@@ -453,16 +453,19 @@ load_image (DocumentTile *tile)
if (! icon_id) {
icon = g_content_type_get_icon (priv->mime_type);
g_object_get (icon, "name", &icon_id, NULL);
-
- g_object_unref (icon);
}
exit:
- slab_load_image (GTK_IMAGE (NAMEPLATE_TILE (tile)->image), GTK_ICON_SIZE_DND, icon_id);
+ if (icon_id)
+ slab_load_image (GTK_IMAGE (NAMEPLATE_TILE (tile)->image), GTK_ICON_SIZE_DND, icon_id);
+ else if (icon)
+ gtk_image_set_from_gicon (GTK_IMAGE (NAMEPLATE_TILE (tile)->image), icon, GTK_ICON_SIZE_DND);
if (free_icon_id && icon_id)
g_free (icon_id);
+ if (icon)
+ g_object_unref (icon);
libslab_checkpoint ("document-tile.c: load_image(): end");
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]