mirror of
https://github.com/swaywm/sway.git
synced 2025-11-04 13:29:52 -05:00
add workspace_layout, ensure ws is always L_HORIZ
Add swayc_change_layout function, which changes either layout or workspace_layout, depending on the container type. Workspace being always L_HORIZ makes this much more i3-compatible.
This commit is contained in:
parent
0ddc4279d1
commit
571321a1d8
7 changed files with 35 additions and 16 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue