aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/container.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-08-30 22:23:27 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-05 18:01:43 +1000
commit06d969382988e49c7308b43dd3740c8f363cb71f (patch)
treeaf4d73785507709cae174f7a1dd8d40c723400a3 /include/sway/tree/container.h
parentFix crash when focus hits edge of root (diff)
downloadsway-06d969382988e49c7308b43dd3740c8f363cb71f.tar.gz
sway-06d969382988e49c7308b43dd3740c8f363cb71f.tar.zst
sway-06d969382988e49c7308b43dd3740c8f363cb71f.zip
Remove offset argument to container_add_sibling
I added this thinking that it might come in useful. Turns out it didn't.
Diffstat (limited to 'include/sway/tree/container.h')
-rw-r--r--include/sway/tree/container.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index c51425c9..6efecf7c 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -279,7 +279,7 @@ void container_insert_child(struct sway_container *parent,
279 struct sway_container *child, int i); 279 struct sway_container *child, int i);
280 280
281void container_add_sibling(struct sway_container *parent, 281void container_add_sibling(struct sway_container *parent,
282 struct sway_container *child, int offset); 282 struct sway_container *child);
283 283
284void container_detach(struct sway_container *child); 284void container_detach(struct sway_container *child);
285 285