don't reset ignored clients on canvas update

part of T787
This commit is contained in:
Mike Blumenkrantz 2014-02-25 09:46:06 -05:00
parent 5c4d818573
commit 9395553039
1 changed files with 4 additions and 1 deletions

View File

@ -459,7 +459,10 @@ e_comp_canvas_update(E_Comp *c)
/* Make temporary list as e_client_res_change_geometry_restore
* rearranges the order. */
EINA_INLIST_FOREACH(c->layers[i].clients, ec)
tmp = eina_list_append(tmp, ec);
{
if (!e_client_util_ignored_get(ec))
tmp = eina_list_append(tmp, ec);
}
EINA_LIST_FREE(tmp, ec)
{