From 0952c9f91d4ef37e619bfb7f0b2474f8356c63c9 Mon Sep 17 00:00:00 2001 From: Stefan Schick Date: Fri, 1 Feb 2019 22:44:03 +0100 Subject: Fix #3445: swaybar tray inerited thems not processed --- swaybar/tray/icon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'swaybar') diff --git a/swaybar/tray/icon.c b/swaybar/tray/icon.c index ed152be5..bf2736c2 100644 --- a/swaybar/tray/icon.c +++ b/swaybar/tray/icon.c @@ -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, ","); -- cgit v1.2.3-54-g00ecf