ignore deleted clients when reapplying zone geometry policy in canvas update

this breaks the compositor!
This commit is contained in:
Mike Blumenkrantz 2016-03-17 14:08:23 -04:00
parent 57e60ac77b
commit 02c1a2db71
1 changed files with 1 additions and 1 deletions

View File

@ -542,7 +542,7 @@ e_comp_canvas_update(void)
* rearranges the order. */
EINA_INLIST_FOREACH(e_comp->layers[i].clients, ec)
{
if (!e_client_util_ignored_get(ec))
if ((!e_client_util_ignored_get(ec)) && (!e_object_is_del(E_OBJECT(ec))))
tmp = eina_list_append(tmp, ec);
}