diff options
author | Stefan Schick <stefan.schick@stecug.de> | 2019-02-01 22:44:03 +0100 |
---|---|---|
committer | Brian Ashworth <bosrsf04@gmail.com> | 2019-02-01 21:47:28 -0500 |
commit | 0952c9f91d4ef37e619bfb7f0b2474f8356c63c9 (patch) | |
tree | 50a3aeebae770d57284ee2e116d1032b8627a7dc /swaybar/tray/icon.c | |
parent | de76c4e071471e7ca4a06010b1d0d8c1ebd33eea (diff) |
Fix #3445: swaybar tray inerited thems not processed
Diffstat (limited to 'swaybar/tray/icon.c')
-rw-r--r-- | swaybar/tray/icon.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, ","); |