From 88518d8103fe890a004bedffd5fbf65433117163 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 11 Mar 2016 18:15:28 -0500 Subject: [PATCH] don't add render updates for deleted clients on failed resize --- 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 05f1f2ff8..ca6f38325 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -1124,6 +1124,7 @@ _e_comp_intercept_resize(void *data, Evas_Object *obj, int w, int h) (!e_pixmap_size_get(cw->ec->pixmap, &pw, &ph)))) { if (e_comp->comp_type != E_PIXMAP_TYPE_X) return; + if (e_object_is_del(E_OBJECT(cw->ec))) return; /* client can't be resized if its pixmap isn't usable, try again */ e_pixmap_dirty(cw->ec->pixmap); e_comp_object_render_update_add(obj);