check protocol visibility for nocomp breaks, not comp object visibility

new comp objects are never going to be visible during nocomp
This commit is contained in:
Mike Blumenkrantz 2014-09-16 10:38:02 -04:00
parent 56f898d36c
commit 4e3b05b11f
1 changed files with 1 additions and 1 deletions

View 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)))