don't reset ignored clients on canvas update
authorMike Blumenkrantz <zmike@samsung.com>
Tue, 25 Feb 2014 14:46:06 +0000 (09:46 -0500)
committerMike Blumenkrantz <zmike@samsung.com>
Tue, 25 Feb 2014 14:46:41 +0000 (09:46 -0500)
part of T787

src/bin/e_comp_canvas.c

index 85376e1..972a406 100644 (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)
           {