From aec3533a0b9a9b3f388f34ba61c8ad6bbafd9f6f Mon Sep 17 00:00:00 2001 From: Nikos Tsipinakis Date: Tue, 27 Jun 2017 10:32:05 +0300 Subject: [PATCH] Add frame and experimental to the section list excluded from rules The frame and experimental sections are currently used for some settings related to frame colour and experimental features respectively and as such should not be parsed as rules. --- src/settings.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/settings.c b/src/settings.c index 35142bc..3e5416a 100644 --- a/src/settings.c +++ b/src/settings.c @@ -544,6 +544,8 @@ void load_settings(char *cmdline_config_path) if (!cur_section) break; if (strcmp(cur_section, "global") == 0 + || strcmp(cur_section, "frame") == 0 + || strcmp(cur_section, "experimental") == 0 || strcmp(cur_section, "shortcuts") == 0 || strcmp(cur_section, "urgency_low") == 0 || strcmp(cur_section, "urgency_normal") == 0