From 47d9b947f0a7ae0eb3d87e291c06f1a66784a3a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 28 Jul 2020 19:57:26 +0200 Subject: [PATCH] config: fix check for scrollback-indicator-format=percentage --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.c b/config.c index 19e2a2ca..5a1bc282 100644 --- a/config.c +++ b/config.c @@ -307,7 +307,7 @@ parse_section_main(const char *key, const char *value, struct config *conf, } else if (strcmp(key, "scrollback-indicator-format") == 0) { - if (strcmp(value, "percent") == 0) { + if (strcmp(value, "percentage") == 0) { conf->scrollback.indicator.format = SCROLLBACK_INDICATOR_FORMAT_PERCENTAGE; } else if (strcmp(value, "line") == 0) {