diff options
author | Ian Fan <[email protected]> | 2018-08-01 16:03:37 +0100 |
---|---|---|
committer | Ian Fan <[email protected]> | 2018-08-06 14:17:58 +0100 |
commit | 356063b6c084a7c2d4e3e654fe48ec79a102294b (patch) | |
tree | 7e780aa0fb2feb1156e96ce61744122fad32c4d4 /sway/tree/workspace.c | |
parent | 3a980857cba80719e70ee3960b5b3b12923fda81 (diff) |
commands: fix layout implementation (also better name for previous split layout)
Diffstat (limited to 'sway/tree/workspace.c')
-rw-r--r-- | sway/tree/workspace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c index cc225e79..250d5ba7 100644 --- a/sway/tree/workspace.c +++ b/sway/tree/workspace.c @@ -59,7 +59,7 @@ struct sway_container *workspace_create(struct sway_container *output, workspace->width = output->width; workspace->height = output->height; workspace->name = !name ? NULL : strdup(name); - workspace->prev_layout = L_NONE; + workspace->prev_split_layout = L_NONE; workspace->layout = container_get_default_layout(output); struct sway_workspace *swayws = calloc(1, sizeof(struct sway_workspace)); |