shell: Print the name of the missing icon
This commit is contained in:
parent
691a258232
commit
ae24773740
1 changed files with 5 additions and 1 deletions
|
@ -58,7 +58,11 @@ load_pixbuf_for_gicon (GIcon *icon)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
g_warning ("Could not find icon");
|
char *name;
|
||||||
|
|
||||||
|
name = g_icon_to_string (icon);
|
||||||
|
g_warning ("Could not find icon '%s'", name);
|
||||||
|
g_free (name);
|
||||||
}
|
}
|
||||||
|
|
||||||
return pixbuf;
|
return pixbuf;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue