From 6a9725c7a60b76aef299243b929817a2ea83be0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 12 Sep 2020 19:52:52 +0200 Subject: [PATCH] config: log warning when new boolean tweak options have been enabled --- config.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/config.c b/config.c index dc4d2873..d80b2501 100644 --- a/config.c +++ b/config.c @@ -1442,11 +1442,17 @@ parse_section_tweak( const char *key, const char *value, struct config *conf, const char *path, unsigned lineno) { - if (strcmp(key, "allow-overflowing-double-width-glyphs") == 0) + if (strcmp(key, "allow-overflowing-double-width-glyphs") == 0) { conf->tweak.allow_overflowing_double_width_glyphs = str_to_bool(value); + if (conf->tweak.allow_overflowing_double_width_glyphs) + LOG_WARN("tweak: allow overflowing double-width glyphs"); + } - else if (strcmp(key, "damage-whole-window") == 0) + else if (strcmp(key, "damage-whole-window") == 0) { conf->tweak.damage_whole_window = str_to_bool(value); + if (conf->tweak.damage_whole_window) + LOG_WARN("tweak: damage whole window"); + } else if (strcmp(key, "render-timer") == 0) { if (strcmp(value, "none") == 0) {