summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-09-29 11:24:54 +0200
committerLibravatar GitHub <noreply@github.com>2018-09-29 11:24:54 +0200
commit351e722b6e10f27625da7ae457240a3caf6c809d (patch)
tree382c09db267d79e5f5e9fb755b237f1e66e2aea0 /include
parentMerge pull request #2635 from RedSoxFan/fix-bg-special (diff)
parentReturn an error when resizing is a no op (diff)
downloadsway-351e722b6e10f27625da7ae457240a3caf6c809d.tar.gz
sway-351e722b6e10f27625da7ae457240a3caf6c809d.tar.zst
sway-351e722b6e10f27625da7ae457240a3caf6c809d.zip
Merge pull request #2729 from RyanDwyer/resize-return-false
Return an error when resizing is a no op
Diffstat (limited to 'include')
-rw-r--r--include/sway/commands.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h
index 1654eb48..370a1f7a 100644
--- a/include/sway/commands.h
+++ b/include/sway/commands.h
@@ -95,7 +95,7 @@ struct cmd_results *add_color(const char *name,
95/** 95/**
96 * TODO: Move this function and its dependent functions to container.c. 96 * TODO: Move this function and its dependent functions to container.c.
97 */ 97 */
98void container_resize_tiled(struct sway_container *parent, enum wlr_edges edge, 98bool container_resize_tiled(struct sway_container *parent, enum wlr_edges edge,
99 int amount); 99 int amount);
100 100
101sway_cmd cmd_assign; 101sway_cmd cmd_assign;