diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2016-07-31 10:22:18 +0200 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2016-07-31 10:22:18 +0200 |
| commit | 07a0475be484b300eb3acdb71c37d785aae7ce0a (patch) | |
| tree | 5188f61ba4305eb55f2fddb631528130393ee4f4 | |
| parent | 8f59be4e0834cdb72f2f1b38fc71e15a6acedfcd (diff) | |
Update container geometry on layout switch
Deeply nested containers which had their layouts changed didn't update
their actual_geometry, this messed up their child containers. Those got
width and height of 0, which was then decreased for stacked/tabbed
containers by title height. Underflow ensued, these containers suddenly
had height 4294967273. In short, not updating actual_geometry didn't
play nicely with nested containers.
| -rw-r--r-- | sway/commands.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c index 7247a407..28dcc996 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -1998,6 +1998,7 @@ static struct cmd_results *cmd_layout(int argc, char **argv) { } update_layout_geometry(parent, old_layout); + update_geometry(parent); arrange_windows(parent, parent->width, parent->height); |
