discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=a22181c0da05ab6cd4c64c8039e22c81ab780822
commit a22181c0da05ab6cd4c64c8039e22c81ab780822 Author: Mike Blumenkrantz <[email protected]> Date: Wed Feb 26 11:26:55 2014 -0500 allow nocomp on some overrides --- src/bin/e_comp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c index 1d996a9..6f9ead7 100644 --- a/src/bin/e_comp.c +++ b/src/bin/e_comp.c @@ -173,7 +173,7 @@ _e_comp_fullscreen_check(E_Comp *c) { Evas_Object *o = ec->frame; - if (e_client_util_ignored_get(ec) || (!evas_object_visible_get(ec->frame))) + if (ec->ignored || ec->input_only || (!evas_object_visible_get(ec->frame))) continue; if (!e_comp_util_client_is_fullscreen(ec)) return NULL; while (o) --
