do not add render updates during damage of deleted clients

This commit is contained in:
Mike Blumenkrantz 2016-02-29 13:33:52 -05:00
parent 1c0e13c575
commit 0b8cf7f959
1 changed files with 2 additions and 1 deletions

View File

@ -3350,7 +3350,8 @@ e_comp_object_damage(Evas_Object *obj, int x, int y, int w, int h)
RENDER_DEBUG("DAMAGE: %d,%d %dx%d", x, y, w, h);
}
cw->updates_exist = 1;
e_comp_object_render_update_add(obj);
if (!e_object_is_del(E_OBJECT(cw->ec)))
e_comp_object_render_update_add(obj);
}
E_API Eina_Bool