X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fstacking.c;h=b18c02af8e61bd8bde77addaf0f5e52091a240aa;hb=299687110d478a4928932f72031c345b27a01840;hp=bb8975d40f71efd7bc2abf8a8d3fa3bb5e8178ce;hpb=abc67cbdc1c1e61e074f8f312eaecb357cd0aa5c;p=chaz%2Fopenbox diff --git a/openbox/stacking.c b/openbox/stacking.c index bb8975d4..b18c02af 100644 --- a/openbox/stacking.c +++ b/openbox/stacking.c @@ -28,6 +28,10 @@ #include "debug.h" GList *stacking_list = NULL; +/*! When true, stacking changes will not be reflected on the screen. This is + to freeze the on-screen stacking order while a window is being temporarily + raised during focus cycling */ +static gboolean pause_changes = FALSE; void stacking_set_list(void) { @@ -99,7 +103,8 @@ static void do_restack(GList *wins, GList *before) } #endif - XRestackWindows(ob_display, win, i); + if (!pause_changes) + XRestackWindows(ob_display, win, i); g_free(win); stacking_set_list(); @@ -125,9 +130,11 @@ void stacking_temp_raise(ObWindow *window) win[1] = window_top(window); XRestackWindows(ob_display, win, 2); + + pause_changes = TRUE; } -void stacking_restore() +void stacking_restore(void) { Window *win; GList *it; @@ -139,6 +146,8 @@ void stacking_restore() win[i] = window_top(it->data); XRestackWindows(ob_display, win, i); g_free(win); + + pause_changes = FALSE; } static void do_raise(GList *wins)