don't add render update during ignored damage on deleted clients

ref 1507f815a5
This commit is contained in:
Mike Blumenkrantz 2016-03-09 15:27:59 -05:00
parent e5d9dbd4ec
commit 40ebd1d16e
1 changed files with 2 additions and 1 deletions

View File

@ -3303,7 +3303,8 @@ e_comp_object_damage(Evas_Object *obj, int x, int y, int w, int h)
if (cw->updates_full)
{
RENDER_DEBUG("IGNORED %p: %d,%d %dx%d", cw->ec, x, y, w, h);
e_comp_object_render_update_add(obj);
if (!e_object_is_del(E_OBJECT(cw->ec)))
e_comp_object_render_update_add(obj);
return;
}
/* clip rect to client surface */