diff options
author | Drew DeVault <[email protected]> | 2018-07-23 07:57:48 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2018-07-23 07:57:48 -0400 |
commit | 0515b37dfde41cfa85529ac0f8b991a1bec749d2 (patch) | |
tree | 5f855ab05c0ec079f4487e9527f87f37c1929bf1 /sway/tree/container.c | |
parent | 89dc047ca9558efe4efe8a81a15903cd0f0bdcba (diff) | |
parent | 12e90fa6006b2cf17a5b5983b5a6e2e70cda58d3 (diff) |
Merge pull request #2323 from RyanDwyer/scratchpad
Implement scratchpad
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r-- | sway/tree/container.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index 42c1d024..4f743c40 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -17,6 +17,7 @@ #include "sway/input/seat.h" #include "sway/ipc-server.h" #include "sway/output.h" +#include "sway/scratchpad.h" #include "sway/server.h" #include "sway/tree/arrange.h" #include "sway/tree/layout.h" @@ -328,6 +329,10 @@ static struct sway_container *container_destroy_noreaping( con->destroying = true; container_set_dirty(con); + if (con->scratchpad) { + scratchpad_remove_container(con); + } + if (!con->parent) { return NULL; } @@ -955,6 +960,9 @@ void container_set_floating(struct sway_container *container, bool enable) { container_reap_empty_recursive(workspace); } else { // Returning to tiled + if (container->scratchpad) { + scratchpad_remove_container(container); + } container_remove_child(container); container_add_child(workspace, container); container->width = container->parent->width; |