diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-06-29 19:52:31 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-06-29 19:52:31 +1000 |
commit | 3c81a900b766dd2c049ba7af6e603805893e0926 (patch) | |
tree | 8894948a4bf9ed4f98f1bb40faeb3ee480ef471e | |
parent | d7169ee7ffd45318125dbe3013aadbd1482a3e5f (diff) |
Add comment about usage to arrange_windows declaration
-rw-r--r-- | include/sway/tree/arrange.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sway/tree/arrange.h b/include/sway/tree/arrange.h index 6c8c0dba..58235642 100644 --- a/include/sway/tree/arrange.h +++ b/include/sway/tree/arrange.h @@ -16,6 +16,10 @@ void add_gaps(struct sway_container *c); * * Use this function if you need to arrange multiple sections of the tree in one * transaction. + * + * You must set the desired state of the container before calling + * arrange_windows, then don't change any state-tracked properties in the + * container until you've called transaction_commit. */ void arrange_windows(struct sway_container *container, struct sway_transaction *transaction); |