calling dirty() on a comp object for a deleted client should not print an error

This commit is contained in:
Mike Blumenkrantz 2016-03-12 15:37:10 -05:00
parent 1a91486083
commit abffe6b6d2
1 changed files with 2 additions and 1 deletions

View File

@ -3674,7 +3674,8 @@ e_comp_object_dirty(Evas_Object *obj)
} }
if (!dirty) if (!dirty)
{ {
ERR("ERROR FETCHING PIXMAP FOR %p", cw->ec); if (!e_object_is_del(E_OBJECT(cw->ec)))
ERR("ERROR FETCHING PIXMAP FOR %p", cw->ec);
return; return;
} }
e_comp_object_native_surface_set(obj, e_comp->gl); e_comp_object_native_surface_set(obj, e_comp->gl);