From 69a29357cb35d15ba3f6ba1852eafd3c756bacfe Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 7 Sep 2015 13:15:25 -0400 Subject: [PATCH] block forced mirror render for clients with native surfaces --- 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 1bf7a289b..268f61d2f 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -3395,7 +3395,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)) return; + if (cw->visible || (!visible) || (!cw->pending_updates) || cw->native) return; /* force render if main object is hidden but mirrors are visible */ e_comp_object_render(obj); }