ShellApp: use st_icon_set_fallback_icon_name() to specify app fallback

We can now safely pass a NULL GIcon to st_icon_set_gicon(), and specify
a more generic fallback using the new API we just introduced.

https://bugzilla.gnome.org/show_bug.cgi?id=746219
This commit is contained in:
Cosimo Cecchi 2015-03-14 15:44:54 -07:00
parent c7185d597b
commit f812e9be7d

View File

@ -216,18 +216,10 @@ shell_app_create_icon_texture (ShellApp *app,
ret = st_icon_new ();
st_icon_set_icon_size (ST_ICON (ret), size);
st_icon_set_fallback_icon_name (ST_ICON (ret), "application-x-executable");
icon = g_app_info_get_icon (G_APP_INFO (app->info));
if (icon != NULL)
{
st_icon_set_gicon (ST_ICON (ret), icon);
}
else
{
icon = g_themed_icon_new ("application-x-executable");
st_icon_set_gicon (ST_ICON (ret), icon);
g_object_unref (icon);
}
st_icon_set_gicon (ST_ICON (ret), icon);
return ret;
}