summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/input_state.h3
-rw-r--r--include/layout.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/include/input_state.h b/include/input_state.h
index 782b4b19..711ad633 100644
--- a/include/input_state.h
+++ b/include/input_state.h
@@ -34,6 +34,9 @@ extern struct pointer_state {
34 bool drag; 34 bool drag;
35 bool resize; 35 bool resize;
36 } floating; 36 } floating;
37 struct pointer_tiling {
38 bool resize;
39 } tiling;
37 struct pointer_lock { 40 struct pointer_lock {
38 bool left; 41 bool left;
39 bool right; 42 bool right;
diff --git a/include/layout.h b/include/layout.h
index 566e3246..20044b95 100644
--- a/include/layout.h
+++ b/include/layout.h
@@ -18,7 +18,7 @@ swayc_t *replace_child(swayc_t *child, swayc_t *new_child);
18swayc_t *remove_child(swayc_t *child); 18swayc_t *remove_child(swayc_t *child);
19 19
20// Layout 20// Layout
21void arrange_windows(swayc_t *container, int width, int height); 21void arrange_windows(swayc_t *container, double width, double height);
22 22
23// Focus 23// Focus
24void unfocus_all(swayc_t *container); 24void unfocus_all(swayc_t *container);