diff options
author | Milan Crha <mcrha@redhat.com> | 2010-10-26 18:35:32 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-10-26 18:35:32 +0800 |
commit | de12bb89a800991bd63ce09ae42b04e1f7903198 (patch) | |
tree | 18dbdf6020d7ba7aad99438c0cb1fa08dcf0940b | |
parent | 2ac302d4b2b5b6cfd3928f8a00a4d3c190d58155 (diff) | |
download | gsoc2013-evolution-de12bb89a800991bd63ce09ae42b04e1f7903198.tar gsoc2013-evolution-de12bb89a800991bd63ce09ae42b04e1f7903198.tar.gz gsoc2013-evolution-de12bb89a800991bd63ce09ae42b04e1f7903198.tar.bz2 gsoc2013-evolution-de12bb89a800991bd63ce09ae42b04e1f7903198.tar.lz gsoc2013-evolution-de12bb89a800991bd63ce09ae42b04e1f7903198.tar.xz gsoc2013-evolution-de12bb89a800991bd63ce09ae42b04e1f7903198.tar.zst gsoc2013-evolution-de12bb89a800991bd63ce09ae42b04e1f7903198.zip |
Bug #631956 - Reset renderer properties in action_combo_box_render_pixbuf
-rw-r--r-- | widgets/misc/e-action-combo-box.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/widgets/misc/e-action-combo-box.c b/widgets/misc/e-action-combo-box.c index 2a3d419b93..cdf962d8de 100644 --- a/widgets/misc/e-action-combo-box.c +++ b/widgets/misc/e-action-combo-box.c @@ -130,6 +130,7 @@ action_combo_box_render_pixbuf (GtkCellLayout *layout, g_object_set ( G_OBJECT (renderer), "sensitive", sensitive, + "icon-name", NULL, "stock-id", stock_id, "stock-size", GTK_ICON_SIZE_MENU, "visible", visible, @@ -138,8 +139,9 @@ action_combo_box_render_pixbuf (GtkCellLayout *layout, else g_object_set ( G_OBJECT (renderer), - "icon-name", icon_name, "sensitive", sensitive, + "icon-name", icon_name, + "stock-id", NULL, "stock-size", GTK_ICON_SIZE_MENU, "visible", visible, "width", width, |