diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-10-12 21:26:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-12 21:26:12 -0400 |
commit | 15a67e57b07f7fe3b2fa69cae82f2a7e0cf00815 (patch) | |
tree | 5f80bbe3775f0e405895ab973c62f8bbd8ea1bf8 /sway/commands/layout.c | |
parent | 857eea8b6355deff7a12edd8b733f8057210142a (diff) | |
parent | 4cba91803eb8c3c3ab4ebf22e94510b43f7a907d (diff) |
Merge pull request #954 from SirCmpwn/revert-945-workspace_layout
Revert "Fixes dealing with workspace_layout and related bugs [rfc]"
Diffstat (limited to 'sway/commands/layout.c')
-rw-r--r-- | sway/commands/layout.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sway/commands/layout.c b/sway/commands/layout.c index a716f9be..e0af30aa 100644 --- a/sway/commands/layout.c +++ b/sway/commands/layout.c @@ -22,10 +22,10 @@ struct cmd_results *cmd_layout(int argc, char **argv) { enum swayc_layouts old_layout = parent->layout; if (strcasecmp(argv[0], "default") == 0) { - swayc_change_layout(parent, parent->prev_layout); + parent->layout = parent->prev_layout; if (parent->layout == L_NONE) { swayc_t *output = swayc_parent_by_type(parent, C_OUTPUT); - swayc_change_layout(parent, default_layout(output)); + parent->layout = default_layout(output); } } else { if (parent->layout != L_TABBED && parent->layout != L_STACKED) { @@ -37,22 +37,22 @@ struct cmd_results *cmd_layout(int argc, char **argv) { parent = new_container(parent, L_TABBED); } - swayc_change_layout(parent, L_TABBED); + parent->layout = L_TABBED; } else if (strcasecmp(argv[0], "stacking") == 0) { if (parent->type != C_CONTAINER && !swayc_is_empty_workspace(parent)) { parent = new_container(parent, L_STACKED); } - swayc_change_layout(parent, L_STACKED); + parent->layout = L_STACKED; } else if (strcasecmp(argv[0], "splith") == 0) { - swayc_change_layout(parent, L_HORIZ); + parent->layout = L_HORIZ; } else if (strcasecmp(argv[0], "splitv") == 0) { - swayc_change_layout(parent, L_VERT); + parent->layout = L_VERT; } else if (strcasecmp(argv[0], "toggle") == 0 && argc == 2 && strcasecmp(argv[1], "split") == 0) { if (parent->layout == L_VERT) { - swayc_change_layout(parent, L_HORIZ); + parent->layout = L_HORIZ; } else { - swayc_change_layout(parent, L_VERT); + parent->layout = L_VERT; } } } |