all repos — openbox @ 9ca05545076ffc4c5165ce12de47173b044b57e0

openbox fork - make it a bit more like ryudo

that was a silly mistake. fullscreen windows amongst others will not crash now :D
Dana Jansens danakj@orodu.net
commit

9ca05545076ffc4c5165ce12de47173b044b57e0

parent

52176d1485e77ba3280ba210b4503eca20928af6

1 files changed, 3 insertions(+), 1 deletions(-)

jump to
M openbox/stacking.copenbox/stacking.c

@@ -242,8 +242,10 @@ this is the window below everything we are re-adding to the list */

last = NULL; for (it = g_list_last(stacking_list); it; it = g_list_previous(it)) { - if (window_layer(it->data) < selected->layer) + if (window_layer(it->data) < selected->layer) { + last = it; continue; + } /* if lowering, stop at the beginning of the layer */ if (!raise) break;