mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 16:01:27 +00:00
Fix #3445: swaybar tray inerited thems not processed
This commit is contained in:
parent
de76c4e071
commit
0952c9f91d
|
@ -135,7 +135,7 @@ static int entry_handler(char *group, char *key, char *value,
|
||||||
theme->name = strdup(value);
|
theme->name = strdup(value);
|
||||||
} else if (strcmp(key, "Comment") == 0) {
|
} else if (strcmp(key, "Comment") == 0) {
|
||||||
theme->comment = strdup(value);
|
theme->comment = strdup(value);
|
||||||
} else if (strcmp(key, "Inherists") == 0) {
|
} else if (strcmp(key, "Inherits") == 0) {
|
||||||
theme->inherits = strdup(value);
|
theme->inherits = strdup(value);
|
||||||
} else if (strcmp(key, "Directories") == 0) {
|
} else if (strcmp(key, "Directories") == 0) {
|
||||||
theme->directories = split_string(value, ",");
|
theme->directories = split_string(value, ",");
|
||||||
|
|
Loading…
Reference in a new issue