diff options
author | D.B <thejan.2009@gmail.com> | 2016-10-10 20:44:09 +0200 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2016-12-04 08:31:34 -0500 |
commit | 6fb4b6737a793672129bb621d48652cc5e42059e (patch) | |
tree | 58ef0b90988625bc0601bfc8b73d6927036ea08c /sway/commands/split.c | |
parent | 5778c59a2f302071fd781683db57a97b51396c87 (diff) |
add workspace_layout to container
Add swayc_change_layout function, which changes either layout or
workspace_layout, depending on the container type.
Diffstat (limited to 'sway/commands/split.c')
-rw-r--r-- | sway/commands/split.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands/split.c b/sway/commands/split.c index 9ff1d638..f3e58fbf 100644 --- a/sway/commands/split.c +++ b/sway/commands/split.c @@ -25,11 +25,11 @@ static struct cmd_results *_do_split(int argc, char **argv, int layout) { /* Case that focus is on an workspace with 0/1 children.change its layout */ if (focused->type == C_WORKSPACE && focused->children->length <= 1) { sway_log(L_DEBUG, "changing workspace layout"); - focused->layout = layout; + swayc_change_layout(focused, layout); } else if (focused->type != C_WORKSPACE && focused->parent->children->length == 1) { /* Case of no siblings. change parent layout */ sway_log(L_DEBUG, "changing container layout"); - focused->parent->layout = layout; + swayc_change_layout(focused->parent, layout); } else { /* regular case where new split container is build around focused container * or in case of workspace, container inherits its children */ |