discomfitor pushed a commit to branch enlightenment-0.21. http://git.enlightenment.org/core/enlightenment.git/commit/?id=2d6f01a18d002b93679e75cec1851155e2f1b53e
commit 2d6f01a18d002b93679e75cec1851155e2f1b53e Author: Mike Blumenkrantz <[email protected]> Date: Fri Aug 25 14:47:05 2017 -0400 force client render on mirror show for clients which have not yet been rendered this is the same mechanism in e_comp_object_dirty() which applies now if a mirror is created for a previously-dirty client fix T5937 --- src/bin/e_comp_object.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 16a1e8e62..a9091ef52 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -234,6 +234,8 @@ _e_comp_object_cb_mirror_show(void *data, Evas *e EINA_UNUSED, Evas_Object *obj if ((!cw->force_visible) && (!cw->deleted) && (!e_object_is_del(E_OBJECT(cw->ec)))) evas_object_smart_callback_call(cw->smart_obj, "visibility_force", cw->ec); cw->force_visible++; + if ((!cw->native) && cw->pending_updates && (!cw->update) && cw->real_hid) + e_comp_object_render(cw->smart_obj); } static void --
