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.
This commit is contained in:
Nikos Tsipinakis 2017-06-27 10:32:05 +03:00
parent 31144c2d93
commit aec3533a0b

View File

@ -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