From 99338854931ce44910f9b4aa5407082741caa5dc Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 26 Sep 2003 06:47:02 +0000 Subject: [PATCH] dont include transients in raise/lower interactions --- openbox/action.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openbox/action.c b/openbox/action.c index b3fdf0f1..d2501444 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -944,7 +944,8 @@ void action_raiselower(union ActionData *data) if (cit == c) break; if (client_normal(cit) == client_normal(c) && cit->layer == c->layer && - cit->frame->visible) + cit->frame->visible && + !client_search_transient(c, cit)) { if (RECT_INTERSECTS_RECT(cit->frame->area, c->frame->area)) { raise = TRUE; -- 2.39.2