discomfitor pushed a commit to branch enlightenment-0.19.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=9b8a6df115c698b49f9d1f3766589ad4b2c4dbc8

commit 9b8a6df115c698b49f9d1f3766589ad4b2c4dbc8
Author: Mike Blumenkrantz <[email protected]>
Date:   Tue Sep 16 10:38:02 2014 -0400

    check protocol visibility for nocomp breaks, not comp object visibility
    
    new comp objects are never going to be visible during nocomp
---
 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 ca90869..bbc9610 100644
--- a/src/bin/e_comp.c
+++ b/src/bin/e_comp.c
@@ -488,7 +488,7 @@ nocomp:
                        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 (!evas_object_visible_get(ec->frame)) continue;
+                       if (!ec->visible) 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 (ec->override || (e_config->allow_above_fullscreen 
&& (!e_config->mode.presentation)))

-- 


Reply via email to