From: Mikael Magnusson Date: Wed, 31 Mar 2010 23:44:29 +0000 (+0200) Subject: Stop moving stuff onscreen when the screen size changes X-Git-Url: http://git.openbox.org/?p=mikachu%2Fopenbox.git;a=commitdiff_plain;h=67b40a0495adf55b777c55c90c3371d6e2b61998 Stop moving stuff onscreen when the screen size changes --- diff --git a/openbox/screen.c b/openbox/screen.c index 24139b5..a6551cf 100644 --- a/openbox/screen.c +++ b/openbox/screen.c @@ -507,10 +507,11 @@ void screen_resize(void) /* this calls screen_update_areas(), which we need ! */ dock_configure(); - for (it = client_list; it; it = g_list_next(it)) { - client_move_onscreen(it->data, FALSE); - client_reconfigure(it->data, FALSE); - } + // bug: this is done in screen_update_areas() already +// 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)