Fix maximized windows and such after screen resizings
This commit is contained in:
parent
8412fb0297
commit
eb4c8ff097
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue