sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 0952c9f91d4ef37e619bfb7f0b2474f8356c63c9
parent de76c4e071471e7ca4a06010b1d0d8c1ebd33eea
Author: Stefan Schick <stefan.schick@stecug.de>
Date:   Fri,  1 Feb 2019 22:44:03 +0100

Fix #3445: swaybar tray inerited thems not processed

Diffstat:
Mswaybar/tray/icon.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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, ",");