From: Jean-Philippe Andre Date: Fri, 2 Oct 2015 03:17:34 +0000 (+0900) Subject: edje_cc: Fix inheritance of "no_render" flag X-Git-Tag: v1.16.0-alpha1~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=60d77cf853dac901f92c75a37e42413051df9394;p=platform%2Fupstream%2Fefl.git edje_cc: Fix inheritance of "no_render" flag @fix --- diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c index 7ae4007..156a15b 100644 --- a/src/bin/edje/edje_cc_handlers.c +++ b/src/bin/edje/edje_cc_handlers.c @@ -3488,6 +3488,7 @@ _part_copy(Edje_Part *ep, Edje_Part *ep2) ep->cursor_mode = ep2->cursor_mode; ep->multiline = ep2->multiline; ep->access = ep2->access; + ep->no_render = ep2->no_render; ep->dragable.x = ep2->dragable.x; ep->dragable.step_x = ep2->dragable.step_x; ep->dragable.count_x = ep2->dragable.count_x;