diff options
author | Ronan Pigott <[email protected]> | 2020-01-14 17:08:01 -0700 |
---|---|---|
committer | Brian Ashworth <[email protected]> | 2020-01-16 21:48:25 -0500 |
commit | d88d4bbd9d363435a4d65191446a497de9031cca (patch) | |
tree | 369c3bf76bea3013dc08a6796e1ca7225216dc0d /sway/tree/root.c | |
parent | 18507e62fd9445090ecbe3cdfffb4a10d7ea90ea (diff) |
Fix crash when showing scratchpad hidden split containers
Diffstat (limited to 'sway/tree/root.c')
-rw-r--r-- | sway/tree/root.c | 5 |
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) { if (old_ws) { container_detach(con); workspace_consider_destroy(old_ws); + } else { + // Act on the ancestor of scratchpad hidden split containers + while (con->parent) { + con = con->parent; + } } workspace_add_floating(new_ws, con); |