diff options
| author | Dana Jansens <danakj@orodu.net> | 2011-10-15 21:04:54 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2011-10-16 18:51:52 -0400 |
| commit | eb4c8ff097dd1fb8e545e4107a29035c73bdf1db (patch) | |
| tree | 7a4c70ccd96535d47d5973bfec72ab8e9cec669b /openbox/screen.c | |
| parent | 8412fb0297ce30cdbbada464ddfb18508ace39ad (diff) | |
Fix maximized windows and such after screen resizings
Diffstat (limited to 'openbox/screen.c')
| -rw-r--r-- | openbox/screen.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/openbox/screen.c b/openbox/screen.c index 91bbb4e7..ffe74a07 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) |
