aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-29 17:05:55 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-29 17:05:55 +1000
commit42f1fdf0153e38cfec44d816afe8b598199d1320 (patch)
tree8b2e2ce185e180d077cb947dd99ac6b4598535f9 /include
parentMerge pull request #2724 from RedSoxFan/update-man-pages (diff)
downloadsway-42f1fdf0153e38cfec44d816afe8b598199d1320.tar.gz
sway-42f1fdf0153e38cfec44d816afe8b598199d1320.tar.zst
sway-42f1fdf0153e38cfec44d816afe8b598199d1320.zip
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;