use scaled icon size.

SVN revision: 39843
This commit is contained in:
Gustavo Sverzut Barbieri 2009-04-03 21:45:33 +00:00
parent 543fe99420
commit 1532f064cb
1 changed files with 2 additions and 2 deletions

View File

@ -408,8 +408,8 @@ _e_util_icon_fdo_set(Evas_Object *obj, const char *icon)
unsigned int size;
if ((!icon) || (!icon[0])) return 0;
size = e_util_icon_size_normalize(16 * e_scale);
path = efreet_icon_path_find(e_config->icon_theme, icon, 48);
size = e_util_icon_size_normalize(48 * e_scale);
path = efreet_icon_path_find(e_config->icon_theme, icon, size);
if (!path) return 0;
e_icon_file_set(obj, path);
E_FREE(path);