From 34196a1ef3fc92bf7f0ed663acedc8f9cffa5958 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 18 Apr 2007 19:19:45 +0000 Subject: [PATCH] make stacking_add_nonintrusive work when there is only 1 other window --- openbox/stacking.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/openbox/stacking.c b/openbox/stacking.c index cb8eaf31..f3173c4d 100644 --- a/openbox/stacking.c +++ b/openbox/stacking.c @@ -408,8 +408,10 @@ void stacking_add_nonintrusive(ObWindow *win) } } if (!it_below) { - /* out of ideas, just add it normally... */ - stacking_add(win); + /* there is no window to put this directly above, so put it at the + bottom */ + stacking_list = g_list_prepend(stacking_list, win); + stacking_lower(win); } else { /* make sure it's not in the wrong layer though ! */ for (; it_below; it_below = g_list_next(it_below)) -- 2.39.2