block forced mirror render for clients with native surfaces

This commit is contained in:
Mike Blumenkrantz 2015-09-07 13:15:25 -04:00
parent bbc1802701
commit 69a29357cb
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}