aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/arrange.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/tree/arrange.h')
-rw-r--r--include/sway/tree/arrange.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sway/tree/arrange.h b/include/sway/tree/arrange.h
index ce95cfe9..a14bc5dc 100644
--- a/include/sway/tree/arrange.h
+++ b/include/sway/tree/arrange.h
@@ -3,6 +3,12 @@
3 3
4struct sway_container; 4struct sway_container;
5 5
6// Remove gaps around container
7void remove_gaps(struct sway_container *c);
8
9// Add gaps around container
10void add_gaps(struct sway_container *c);
11
6// Determine the root container's geometry, then iterate to everything below 12// Determine the root container's geometry, then iterate to everything below
7void arrange_root(void); 13void arrange_root(void);
8 14