projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4fb22f6
)
E17: Revert fdo icon searching in different themes. Apparently it
author
Christopher Michael
<cpmichael1@comcast.net>
Wed, 11 May 2011 13:55:22 +0000
(13:55 +0000)
committer
Christopher Michael
<cpmichael1@comcast.net>
Wed, 11 May 2011 13:55:22 +0000
(13:55 +0000)
breaks efreet cache (tho I saw no side effects here).
SVN revision: 59332
src/bin/e_utils.c
patch
|
blob
|
history
diff --git
a/src/bin/e_utils.c
b/src/bin/e_utils.c
index
36c154f
..
bfea18a
100644
(file)
--- a/
src/bin/e_utils.c
+++ b/
src/bin/e_utils.c
@@
-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);