iconhelper: Show error if fail to load placeholder icon

This commit is contained in:
Robert Ancell 2017-06-08 11:29:09 +12:00
parent 86ac88e0be
commit 82a4e830a3

View File

@ -454,13 +454,15 @@ ensure_surface_for_gicon (GtkIconHelper *self,
if (destination == NULL)
{
GError *error = NULL;
destination = gtk_icon_theme_load_icon (icon_theme,
"image-missing",
width,
flags | GTK_ICON_LOOKUP_USE_BUILTIN | GTK_ICON_LOOKUP_GENERIC_FALLBACK,
NULL);
&error);
/* We include this image as resource, so we always have it available or
* the icontheme code is broken */
g_assert_no_error (error);
g_assert (destination);
symbolic = FALSE;
}