aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/workspace.h
diff options
context:
space:
mode:
authorLibravatar Tudor Brindus <me@tbrindus.ca>2020-07-01 01:08:04 -0400
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2020-07-01 18:43:20 -0400
commit92891fb1edef5136ae4eb35fec5b8523f031be81 (patch)
tree859ad6d0d7a0dae214bdfff7f0bf3263885a2ed8 /include/sway/tree/workspace.h
parentMinor wording changes in Romanian README.md translation (diff)
downloadsway-92891fb1edef5136ae4eb35fec5b8523f031be81.tar.gz
sway-92891fb1edef5136ae4eb35fec5b8523f031be81.tar.zst
sway-92891fb1edef5136ae4eb35fec5b8523f031be81.zip
commands/move: unwrap workspace container on move to new workspace
If moving e.g. `T[app app]` into a new workspace with `workspace_layout tabbed`, then post-move the tree in that workspace will be `T[T[app app]]`. This still happens with horizontal or vertical workspace layout, but is less visible since those containers have no decorations. Fixes #5426.
Diffstat (limited to 'include/sway/tree/workspace.h')
-rw-r--r--include/sway/tree/workspace.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sway/tree/workspace.h b/include/sway/tree/workspace.h
index 41b59796..1adbe68a 100644
--- a/include/sway/tree/workspace.h
+++ b/include/sway/tree/workspace.h
@@ -105,6 +105,9 @@ struct sway_container *workspace_find_container(struct sway_workspace *ws,
105 */ 105 */
106struct sway_container *workspace_wrap_children(struct sway_workspace *ws); 106struct sway_container *workspace_wrap_children(struct sway_workspace *ws);
107 107
108void workspace_unwrap_children(struct sway_workspace *ws,
109 struct sway_container *wrap);
110
108void workspace_detach(struct sway_workspace *workspace); 111void workspace_detach(struct sway_workspace *workspace);
109 112
110void workspace_add_tiling(struct sway_workspace *workspace, 113void workspace_add_tiling(struct sway_workspace *workspace,