mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-11-17 07:48:28 +01:00
Fix #3445: swaybar tray inerited thems not processed
This commit is contained in:
parent
de76c4e071
commit
0952c9f91d
1 changed files with 1 additions and 1 deletions
|
@ -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, ",");
|
||||
|
|
Loading…
Reference in a new issue