Fix #3445: swaybar tray inerited thems not processed

This commit is contained in:
Stefan Schick 2019-02-01 22:44:03 +01:00 committed by Brian Ashworth
parent de76c4e071
commit 0952c9f91d
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ static int entry_handler(char *group, char *key, char *value,
theme->name = strdup(value);
} else if (strcmp(key, "Comment") == 0) {
theme->comment = strdup(value);
} else if (strcmp(key, "Inherists") == 0) {
} else if (strcmp(key, "Inherits") == 0) {
theme->inherits = strdup(value);
} else if (strcmp(key, "Directories") == 0) {
theme->directories = split_string(value, ",");