ilist widget custom edje setting thingy also sets scrollframe theme

SVN revision: 76799
This commit is contained in:
Mike Blumenkrantz 2012-09-18 11:26:36 +00:00
parent 31052004d0
commit ce2186f31c
1 changed files with 6 additions and 0 deletions

View File

@ -1012,9 +1012,15 @@ EAPI Eina_Bool
e_widget_ilist_custom_edje_file_set(Evas_Object *obj, const char *file, const char *group)
{
E_Widget_Data *wd;
char buf[1024];
wd = e_widget_data_get(obj);
if (!wd) return EINA_FALSE;
if (group)
{
snprintf(buf, sizeof(buf), "%s/scrollframe", group);
e_scrollframe_custom_edje_file_set(wd->o_scrollframe, file, group);
}
return e_ilist_custom_edje_file_set(wd->o_ilist, file, group);
}