discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=f2c1976e9a0997653817dbbd3ab29b8ee287be64
commit f2c1976e9a0997653817dbbd3ab29b8ee287be64 Author: Mike Blumenkrantz <[email protected]> Date: Fri Mar 10 15:57:15 2017 -0500 do not force comp objects to render for their proxies if real_hid is set this flag indicates that the object cannot be rendered --- src/bin/e_comp_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 6b56c85..d35e9d5 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -3962,7 +3962,7 @@ e_comp_object_dirty(Evas_Object *obj) } cw->update_count = cw->updates_full = cw->updates_exist = 0; evas_object_smart_callback_call(obj, "dirty", NULL); - if (cw->visible || (!visible) || (!cw->pending_updates) || cw->native) return; + if (cw->real_hid || cw->visible || (!visible) || (!cw->pending_updates) || cw->native) return; /* force render if main object is hidden but mirrors are visible */ RENDER_DEBUG("FORCING RENDER %p", cw->ec); e_comp_object_render(obj); --
