diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-30 10:31:21 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-03-30 10:47:19 -0400 |
commit | 01af34391267e91461a4ab7a1234dd58f45d2c93 (patch) | |
tree | ae5197dabda270035b383d45b5c113afab2ebfbd /include/sway/tree/layout.h | |
parent | 2d460502812093b47f43295cf21636198e44edbb (diff) | |
download | sway-01af34391267e91461a4ab7a1234dd58f45d2c93.tar.xz |
Destroy empty workspaces when moving away
Diffstat (limited to 'include/sway/tree/layout.h')
-rw-r--r-- | include/sway/tree/layout.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sway/tree/layout.h b/include/sway/tree/layout.h index ad52bdb0..8239366b 100644 --- a/include/sway/tree/layout.h +++ b/include/sway/tree/layout.h @@ -39,6 +39,9 @@ struct sway_container *container_add_sibling(struct sway_container *parent, struct sway_container *container_remove_child(struct sway_container *child); +void container_move_to(struct sway_container* container, + struct sway_container* destination); + enum sway_container_layout container_get_default_layout(struct sway_container *output); void container_sort_workspaces(struct sway_container *output); |