From 9c611a716b3ba8b1bed0c184d766a65c40cdbfe5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 17 Feb 2019 15:47:13 +0100 Subject: [PATCH] config: make border.width and border.color optional --- config-verify.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config-verify.c b/config-verify.c index 91dff96..41911a1 100644 --- a/config-verify.c +++ b/config-verify.c @@ -329,8 +329,8 @@ static bool verify_bar_border(keychain_t *chain, const struct yml_node *node) { static const struct attr_info attrs[] = { - {"width", true, &conf_verify_int}, - {"color", true, &conf_verify_color}, + {"width", false, &conf_verify_int}, + {"color", false, &conf_verify_color}, {"margin", false, &conf_verify_int}, {"left-margin", false, &conf_verify_int}, {"right-margin", false, &conf_verify_int},