From 69abb86cb0876a26d5d34da9d9c1de7d968cafc2 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 28 Mar 2003 03:22:23 +0000 Subject: [PATCH] dont lower below lower layers --- openbox/stacking.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbox/stacking.c b/openbox/stacking.c index 1d296e5f..72b7c03b 100644 --- a/openbox/stacking.c +++ b/openbox/stacking.c @@ -102,7 +102,7 @@ void stacking_lower(Client *client) } else { while (it != stacking_list) { Client *c = it->data; - if (client->layer >= c->layer) + if (client->layer <= c->layer) break; it = it->prev; } -- 2.39.2