diff options
author | Tony Crisci <[email protected]> | 2018-03-29 23:15:39 -0400 |
---|---|---|
committer | Tony Crisci <[email protected]> | 2018-03-29 23:15:39 -0400 |
commit | 2778edef976a669dd0019ebb5327bcfeb4de13c5 (patch) | |
tree | 6d9c1cecaa845590025f8354047e2986c3301092 /sway/commands/layout.c | |
parent | 92c58b1e63d41d48cfb487b04a2cb105c990bc4c (diff) |
arrange windows
Diffstat (limited to 'sway/commands/layout.c')
-rw-r--r-- | sway/commands/layout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/layout.c b/sway/commands/layout.c index e9cfeb8f..ebab2a48 100644 --- a/sway/commands/layout.c +++ b/sway/commands/layout.c @@ -50,7 +50,7 @@ struct cmd_results *cmd_layout(int argc, char **argv) { } } - container_arrange_windows(parent, parent->width, parent->height); + arrange_windows(parent, parent->width, parent->height); return cmd_results_new(CMD_SUCCESS, NULL, NULL); } |