discomfitor pushed a commit to branch enlightenment-0.21. http://git.enlightenment.org/core/enlightenment.git/commit/?id=804bf20c72fbeaa454a932bf70294edc3d7ea4be
commit 804bf20c72fbeaa454a932bf70294edc3d7ea4be Author: Mike Blumenkrantz <[email protected]> Date: Fri Mar 10 15:57:15 2017 -0500 return during comp object pixels function if client was deleted during render --- src/bin/e_comp_object.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index d55e8eb..fd4aafb 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -995,6 +995,7 @@ _e_comp_object_pixels_get(void *data, Evas_Object *obj) e_comp_object_shape_apply(ec->frame); ec->shape_changed = 0; } + if (e_object_is_del(E_OBJECT(ec))) return; /* shaped clients get precise mouse events to handle transparent pixels */ evas_object_precise_is_inside_set(cw->obj, ec->shaped || ec->shaped_input); --
