E17: Revert fdo icon searching in different themes. Apparently it

breaks efreet cache (tho I saw no side effects here).



SVN revision: 59332
This commit is contained in:
Christopher Michael 2011-05-11 13:55:22 +00:00
parent 4fb22f6eb3
commit 95075ba49d
1 changed files with 0 additions and 15 deletions

View File

@ -452,21 +452,6 @@ _e_util_icon_fdo_set(Evas_Object *obj, const char *icon)
size = e_util_icon_size_normalize(size * e_scale);
path = efreet_icon_path_find(e_config->icon_theme, icon, size);
if (!path)
{
path = efreet_icon_path_find("default", icon, size);
if (!path)
{
path = efreet_icon_path_find("hicolor", icon, size);
if (!path)
{
path = efreet_icon_path_find("gnome", icon, size);
if (!path)
path = efreet_icon_path_find("Human", icon, size);
}
}
}
if (!path) return 0;
e_icon_file_set(obj, path);