From 13615eaba8f82aa5b02ae2cea2e29dbda26545af Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Tue, 18 Sep 2012 12:52:38 +0000 Subject: [PATCH] E: Fix up ilist_custom_edje set to properly set theme for scrollframe also. SVN revision: 76815 --- src/bin/e_widget_ilist.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/bin/e_widget_ilist.c b/src/bin/e_widget_ilist.c index 5a9d46415..a2583f40e 100644 --- a/src/bin/e_widget_ilist.c +++ b/src/bin/e_widget_ilist.c @@ -1012,14 +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) { + char buf[1024]; + snprintf(buf, sizeof(buf), "%s/scrollframe", group); - e_scrollframe_custom_edje_file_set(wd->o_scrollframe, file, group); + e_scrollframe_custom_edje_file_set(wd->o_scrollframe, file, buf); } return e_ilist_custom_edje_file_set(wd->o_ilist, file, group); }