From: sachiel Date: Fri, 11 Nov 2011 03:13:13 +0000 (+0000) Subject: Some more fixes to the group inherit thing X-Git-Tag: submit/2.0alpha-wayland/20121127.221958~592 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cfa58c4e1eee19df63ff3b383a3ebe80cc2a17a8;p=profile%2Fivi%2Fedje.git Some more fixes to the group inherit thing git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@65037 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/bin/edje_cc_handlers.c b/src/bin/edje_cc_handlers.c index 88f5b6b..9f337b9 100644 --- a/src/bin/edje_cc_handlers.c +++ b/src/bin/edje_cc_handlers.c @@ -2355,6 +2355,7 @@ st_collections_group_inherit(void) ed = ep->default_desc; parent_desc = ed2 = ep2->default_desc; ed->state.name = STRDUP(ed2->state.name); + ed->state.value = ed2->state.value; st_collections_group_parts_part_description_inherit(); parent_desc = NULL; @@ -2365,6 +2366,7 @@ st_collections_group_inherit(void) ed = ep->other.desc[j]; parent_desc = ed2 = ep2->other.desc[j]; ed->state.name = STRDUP(ed2->state.name); + ed->state.value = ed2->state.value; st_collections_group_parts_part_description_inherit(); parent_desc = NULL; } @@ -2904,6 +2906,7 @@ st_collections_group_parts_part_name(void) pc->parts = realloc(pc->parts, pc->parts_count * sizeof (Edje_Part *)); ep = current_part = pc->parts[i]; epp->can_override = EINA_FALSE; + break; } } }