discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=62023bc7224a556c331244cab65eaefb7e86e879
commit 62023bc7224a556c331244cab65eaefb7e86e879 Author: Mike Blumenkrantz <[email protected]> Date: Sat Aug 16 09:46:56 2014 -0400 nocomp enforcing is now more accurate --- src/bin/e_comp.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c index 023a063..7fade4e 100644 --- a/src/bin/e_comp.c +++ b/src/bin/e_comp.c @@ -484,10 +484,12 @@ nocomp: (ec && nec) && (ec != nec); ec = nec, nec = e_client_below_get(ec)) { if (ec == c->nocomp_ec) break; + if (evas_object_layer_get(ec->frame) < evas_object_layer_get(c->nocomp_ec->frame)) break; if (e_client_is_stacking(ec)) continue; - if (ec->override && ec->internal) continue; //systray + if (!evas_object_visible_get(ec->frame)) continue; + if (evas_object_data_get(ec->frame, "comp_skip")) continue; if (e_object_is_del(E_OBJECT(ec)) || (!e_client_util_desk_visible(ec, e_desk_current_get(ec->zone)))) continue; - if (e_config->allow_above_fullscreen && (!e_config->mode.presentation)) + if (ec->override || (e_config->allow_above_fullscreen && (!e_config->mode.presentation))) { _e_comp_nocomp_end(c); break; --
