diff --git a/openbox/action.c b/openbox/action.c index 80c689f5..b035558d 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -784,7 +784,10 @@ void action_raiselower(union ActionData *data) ObClient *cit = it->data; if (cit == c) break; - if (client_normal(cit) == client_normal(c) && cit->layer == c->layer) { + if (client_normal(cit) == client_normal(c) && + cit->layer == c->layer && + cit->frame->visible) + { if (RECT_INTERSECTS_RECT(cit->frame->area, c->frame->area)) { raise = TRUE; break;