diff options
author | D.B <thejan.2009@gmail.com> | 2016-11-17 06:49:12 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2016-12-04 08:31:34 -0500 |
commit | 35b8d185ac58eaaeb12a95d6947cdcb78a2ee487 (patch) | |
tree | fdfeef48c18a9a484b7491d38a6ee0be12801f7c /include | |
parent | 4762bcb3b9a1b9043ce78c7765d4513b0c5da635 (diff) |
fix layout switching (was broken because of workspace_layout)
For workspace containers, swayc_change_layout also changes ->layout alongside
->workspace_layout when it's a sensible thing to do. There is an additional test
for 'layout toggle' command which ensures that containers will be tiled
horizontally after toggling from tabbed or stacked.
Diffstat (limited to 'include')
-rw-r--r-- | include/sway/container.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/container.h b/include/sway/container.h index 90825a49..2bedd136 100644 --- a/include/sway/container.h +++ b/include/sway/container.h @@ -324,7 +324,7 @@ void close_views(swayc_t *container); /** * Assign layout to a container. Needed due to workspace container specifics. - * Workspace always needs L_HORIZ layout. + * Workspace should always have either L_VERT or L_HORIZ layout. */ swayc_t *swayc_change_layout(swayc_t *container, enum swayc_layouts layout); |