From: Dana Jansens Date: Sun, 16 Oct 2011 01:04:54 +0000 (-0400) Subject: Fix maximized windows and such after screen resizings X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=ea382ba7476144de0d67861dd97a241d01002c06;p=dana%2Fopenbox.git Fix maximized windows and such after screen resizings --- diff --git a/openbox/screen.c b/openbox/screen.c index e15f6152..b4c5dd9a 100644 --- a/openbox/screen.c +++ b/openbox/screen.c @@ -499,8 +499,10 @@ void screen_resize(void) /* this calls screen_update_areas(), which we need ! */ dock_configure(); - for (it = client_list; it; it = g_list_next(it)) + for (it = client_list; it; it = g_list_next(it)) { client_move_onscreen(it->data, FALSE); + client_reconfigure(it->data, FALSE); + } } void screen_set_num_desktops(guint num)