aboutsummaryrefslogtreecommitdiff
path: root/sway/tree
diff options
context:
space:
mode:
authorTudor Brindus <me@tbrindus.ca>2020-07-01 01:08:04 -0400
committerBrian Ashworth <bosrsf04@gmail.com>2020-07-01 18:43:20 -0400
commit92891fb1edef5136ae4eb35fec5b8523f031be81 (patch)
tree859ad6d0d7a0dae214bdfff7f0bf3263885a2ed8 /sway/tree
parent105bf23998e76bf88c577aa92b3afd1fe228b1bc (diff)
downloadsway-92891fb1edef5136ae4eb35fec5b8523f031be81.tar.xz
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 'sway/tree')
-rw-r--r--sway/tree/workspace.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c
index 0fa28951..3bcba8e5 100644
--- a/sway/tree/workspace.c
+++ b/sway/tree/workspace.c
@@ -641,6 +641,21 @@ struct sway_container *workspace_wrap_children(struct sway_workspace *ws) {
return middle;
}
+void workspace_unwrap_children(struct sway_workspace *ws,
+ struct sway_container *wrap) {
+ if (!sway_assert(workspace_is_empty(ws),
+ "target workspace must be empty")) {
+ return;
+ }
+
+ ws->layout = wrap->layout;
+ while (wrap->children->length) {
+ struct sway_container *child = wrap->children->items[0];
+ container_detach(child);
+ workspace_add_tiling(ws, child);
+ }
+}
+
void workspace_detach(struct sway_workspace *workspace) {
struct sway_output *output = workspace->output;
int index = list_find(output->workspaces, workspace);