diff options
author | Brian Ashworth <bosrsf04@gmail.com> | 2019-01-14 21:45:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-14 21:45:14 -0500 |
commit | bbd312c95a35db9604cfac1c7b179c3d716ff094 (patch) | |
tree | a46789c96e74e56ef9bf84d83e26c1937bdfe57e /include/sway/commands.h | |
parent | 2573606b60f0606860634b90749f734cd0e918b7 (diff) | |
parent | 289130430f3242ecdc25eb2bf84e20564b360c68 (diff) |
Merge pull request #3422 from RyanDwyer/resize-immediate-siblings
Resize only current and immediate siblings rather than all siblings
Diffstat (limited to 'include/sway/commands.h')
-rw-r--r-- | include/sway/commands.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h index 657f909e..68487879 100644 --- a/include/sway/commands.h +++ b/include/sway/commands.h @@ -92,9 +92,12 @@ struct cmd_results *add_color(char *buffer, const char *color); /** * TODO: Move this function and its dependent functions to container.c. */ -void container_resize_tiled(struct sway_container *parent, enum wlr_edges edge, +void container_resize_tiled(struct sway_container *parent, uint32_t axis, int amount); +struct sway_container *container_find_resize_parent(struct sway_container *con, + uint32_t edge); + sway_cmd cmd_assign; sway_cmd cmd_bar; sway_cmd cmd_bindcode; |