diff options
author | jiin.moon <jiin.moon@samsung.com> | 2017-07-14 11:29:50 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-07-14 11:39:44 +0900 |
commit | 4211822701c662b4b97cec4a66391fd0471ce1b7 (patch) | |
tree | c605463d1f4f64e2bab5581cb55972df34582078 | |
parent | 981d851d575021ef65f3d61c8ee693d2c686fb7d (diff) | |
download | efl-4211822701c662b4b97cec4a66391fd0471ce1b7.tar.gz |
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
-rw-r--r-- | src/bin/edje/edje_cc_handlers.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c index 415f778280..dadf02c723 100644 --- a/src/bin/edje/edje_cc_handlers.c +++ b/src/bin/edje/edje_cc_handlers.c @@ -8452,6 +8452,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; |