don't add render updates for deleted clients on failed resize

This commit is contained in:
Mike Blumenkrantz 2016-03-11 18:15:28 -05:00
parent d2cc427505
commit 88518d8103
1 changed files with 1 additions and 0 deletions

View File

@ -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);