aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/root.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree/root.c')
-rw-r--r--sway/tree/root.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/tree/root.c b/sway/tree/root.c
index 46a140ef..ebd185ec 100644
--- a/sway/tree/root.c
+++ b/sway/tree/root.c
@@ -132,6 +132,11 @@ void root_scratchpad_show(struct sway_container *con) {
132 if (old_ws) { 132 if (old_ws) {
133 container_detach(con); 133 container_detach(con);
134 workspace_consider_destroy(old_ws); 134 workspace_consider_destroy(old_ws);
135 } else {
136 // Act on the ancestor of scratchpad hidden split containers
137 while (con->parent) {
138 con = con->parent;
139 }
135 } 140 }
136 workspace_add_floating(new_ws, con); 141 workspace_add_floating(new_ws, con);
137 142