commit 816ceddcbdd6c98648784e85559b495b63613b7b parent eab29ca0ce9bb4571816d0fa23907356ce072b7d Author: Drew DeVault <sir@cmpwn.com> Date: Sat, 29 Apr 2017 10:07:18 -0400 Set child border to background if not specified Diffstat:
| M | sway/commands/client.c | | | 4 | ++++ |
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/sway/commands/client.c b/sway/commands/client.c @@ -25,6 +25,10 @@ static struct cmd_results *parse_border_color(struct border_colors *border_color *colors[i] = strtoul(buffer + 1, NULL, 16); } + if (argc < 5) { + border_colors->child_border = border_colors->background; + } + return cmd_results_new(CMD_SUCCESS, NULL, NULL); }