Improve GtkEntry handling of invalid stock ids

Instead of silently showing no icon, show a "missing image"
icon, like GtkImage does in the same situation. Fixes bug 579590.
This commit is contained in:
Cody Russell 2009-05-30 00:10:14 -04:00 committed by Matthias Clasen
parent 5964109ef3
commit 47db0f0020

View File

@ -6448,6 +6448,11 @@ gtk_entry_ensure_pixbuf (GtkEntry *entry,
icon_info->stock_id,
GTK_ICON_SIZE_MENU,
NULL);
if (!icon_info->pixbuf)
icon_info->pixbuf = gtk_widget_render_icon (GTK_WIDGET (entry),
GTK_STOCK_MISSING_IMAGE,
GTK_ICON_SIZE_MENU,
NULL);
GTK_WIDGET_STATE (entry) = state;
break;