From 990b74a49e45e5715c131328b7e1464c5f5ccf6e Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 25 Mar 2003 00:38:55 +0000 Subject: [PATCH] dont change the stacking order hint while shuting down --- openbox/stacking.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/openbox/stacking.c b/openbox/stacking.c index be6d07d6..1d296e5f 100644 --- a/openbox/stacking.c +++ b/openbox/stacking.c @@ -13,12 +13,18 @@ void stacking_set_list() GList *it; guint size = g_list_length(stacking_list); + /* on shutdown, don't update the properties, so that we can read it back + in on startup and re-stack the windows as they were before we shut down + */ + if (ob_state == State_Exiting) return; + /* create an array of the window ids (from bottom to top, reverse order!) */ if (size > 0) { windows = g_new(Window, size); win_it = windows; - for (it = g_list_last(stacking_list); it != NULL; it = it->prev, ++win_it) + for (it = g_list_last(stacking_list); it != NULL; + it = it->prev, ++win_it) *win_it = ((Client*)it->data)->window; } else windows = NULL; -- 2.39.2