jpeg pushed a commit to branch efl-1.19. http://git.enlightenment.org/core/efl.git/commit/?id=025c23d7b6fa7695960f5f41e39920d8e7bc750a
commit 025c23d7b6fa7695960f5f41e39920d8e7bc750a Author: jiin.moon <jiin.m...@samsung.com> Date: Fri Jul 14 11:29:50 2017 +0900 edje_cc: Add copy item for proxy part Summary: Although user use "inherit" in a state of proxy part, the inherit function does not copy the source_visible and the source_clip value of parent to the state. Test Plan: {F1751132}sample Reviewers: jpeg, cedric Differential Revision: https://phab.enlightenment.org/D5017 @fix --- src/bin/edje/edje_cc_handlers.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c index 91c08c2604..2e6df59f7d 100644 --- a/src/bin/edje/edje_cc_handlers.c +++ b/src/bin/edje/edje_cc_handlers.c @@ -8400,6 +8400,8 @@ st_collections_group_parts_part_description_inherit(void) Edje_Part_Description_Proxy *pparent = (Edje_Part_Description_Proxy*) parent; data_queue_copied_part_lookup(pc, &(pparent->proxy.id), &(ped->proxy.id)); + ped->proxy.source_clip = pparent->proxy.source_clip; + ped->proxy.source_visible = pparent->proxy.source_visible; _filter_copy(&ped->filter, &pparent->filter); break; --