Eina_Bool ret = EINA_FALSE;
E_Vis_Client *below;
Eina_Bool send_vis;
+ int x, y, w, h;
if (!ec) return EINA_FALSE;
return EINA_FALSE;
}
+ /* if the ec is not fullfilling the screen, no needs to wait below clients' uniconify */
+ e_client_geometry_get(ec, &x, &y, &w, &h);
+ if (!E_CONTAINS(x, y, w, h, ec->zone->x, ec->zone->y, ec->zone->w, ec->zone->h))
+ return EINA_FALSE;
+
/* find below activity clients */
_e_vis_ec_below_activity_clients_get(ec, &below_list);
if (!below_list)