aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands.c
diff options
context:
space:
mode:
authorLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-04-01 13:36:36 +0200
committerLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-04-25 00:00:49 +0200
commit8d700fe008ccf9f7eb4664e236277c9f30a449fb (patch)
treefb9f36de0acca621a6995db59c52cf3eb2002770 /sway/commands.c
parentTabbed and stacked layout (diff)
downloadsway-8d700fe008ccf9f7eb4664e236277c9f30a449fb.tar.gz
sway-8d700fe008ccf9f7eb4664e236277c9f30a449fb.tar.zst
sway-8d700fe008ccf9f7eb4664e236277c9f30a449fb.zip
Fix problems with floating windows
Makes any tabbed/stacked layout a container to separate from floating windows which may be attached to a workspace.
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 07dd715c..12d60854 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -1764,8 +1764,16 @@ static struct cmd_results *cmd_layout(int argc, char **argv) {
1764 // cmd_workspace_layout 1764 // cmd_workspace_layout
1765 parent->layout = L_HORIZ; 1765 parent->layout = L_HORIZ;
1766 } else if (strcasecmp(argv[0], "tabbed") == 0) { 1766 } else if (strcasecmp(argv[0], "tabbed") == 0) {
1767 if (parent->type != C_CONTAINER) {
1768 parent = new_container(parent, L_TABBED);
1769 }
1770
1767 parent->layout = L_TABBED; 1771 parent->layout = L_TABBED;
1768 } else if (strcasecmp(argv[0], "stacking") == 0) { 1772 } else if (strcasecmp(argv[0], "stacking") == 0) {
1773 if (parent->type != C_CONTAINER) {
1774 parent = new_container(parent, L_STACKED);
1775 }
1776
1769 parent->layout = L_STACKED; 1777 parent->layout = L_STACKED;
1770 } else if (strcasecmp(argv[0], "splith") == 0) { 1778 } else if (strcasecmp(argv[0], "splith") == 0) {
1771 parent->layout = L_HORIZ; 1779 parent->layout = L_HORIZ;