Evas: Fix no_render flag when in a map

no_render objects would still show up in a map surface
because of a different logic.
This commit is contained in:
Jean-Philippe Andre 2015-07-15 17:51:18 +09:00
parent 326dc3850b
commit 29de62cd13
1 changed files with 1 additions and 1 deletions

View File

@ -1280,7 +1280,7 @@ evas_render_mapped(Evas_Public_Data *e, Evas_Object *eo_obj,
else if (proxy_src_clip)
{
if ((!evas_object_is_visible(eo_obj, obj)) || (obj->clip.clipees)
|| (obj->cur->have_clipees))
|| (obj->cur->have_clipees) || (obj->no_render))
{
RD(level, "}\n");
return clean_them;