Fix maximized windows and such after screen resizings

This commit is contained in:
Dana Jansens 2011-10-15 21:04:54 -04:00
parent 8412fb0297
commit eb4c8ff097

View file

@ -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)