check protocol visibility for nocomp breaks, not comp object visibility
authorMike Blumenkrantz <zmike@osg.samsung.com>
Tue, 16 Sep 2014 14:38:02 +0000 (10:38 -0400)
committerMike Blumenkrantz <zmike@osg.samsung.com>
Tue, 16 Sep 2014 14:38:02 +0000 (10:38 -0400)
new comp objects are never going to be visible during nocomp

src/bin/e_comp.c

index ca90869..bbc9610 100644 (file)
@@ -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)))