diff options
author | Drew DeVault <[email protected]> | 2017-11-25 16:30:15 -0500 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2017-11-25 16:30:15 -0500 |
commit | 8caabe59c2e6f6174678e6c28be3381a7dabff10 (patch) | |
tree | 5425efb1f3b68e9b275d8429bba70a2b132b72c9 /include/sway/layout.h | |
parent | a57d46292694e388d74add7b0869bcafdb42b2bd (diff) |
Handle view destruction properly
Diffstat (limited to 'include/sway/layout.h')
-rw-r--r-- | include/sway/layout.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sway/layout.h b/include/sway/layout.h index 505036a0..f3b62b05 100644 --- a/include/sway/layout.h +++ b/include/sway/layout.h @@ -5,6 +5,7 @@ struct sway_container; void init_layout(void); void add_child(struct sway_container *parent, struct sway_container *child); +struct sway_container *remove_child(struct sway_container *child); enum swayc_layouts default_layout(struct sway_container *output); void sort_workspaces(struct sway_container *output); void arrange_windows(struct sway_container *container, double width, double height); |