diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2017-04-29 10:07:18 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2017-04-29 10:07:18 -0400 |
| commit | 712ad337fd8757624e7bd5e09c69b67de7036130 (patch) | |
| tree | fe144986503207bdff48e08ee5d65ecd014da1b3 | |
| parent | 8aeb72d7c6b1a2643f5909e197a15ba20e7a61f2 (diff) | |
Set child border to background if not specified
| -rw-r--r-- | sway/commands/client.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/commands/client.c b/sway/commands/client.c index 30f9137e..f3d879cd 100644 --- 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); } |
