From 6bcefc27a8e8f873167a51525f7d0891be496d95 Mon Sep 17 00:00:00 2001 From: Joshie Date: Sat, 16 Oct 2021 23:17:46 +0000 Subject: [PATCH] theme: fix parsing inactive label colors There was a typo here which meant these never got parsed and always appeared as black. Signed-off-by: Joshua Ashton --- src/theme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme.c b/src/theme.c index 10e0a868..e487d72f 100644 --- a/src/theme.c +++ b/src/theme.c @@ -161,7 +161,7 @@ entry(struct theme *theme, const char *key, const char *value) if (match(key, "window.active.label.text.color")) { parse_hexstr(value, theme->window_active_label_text_color); } - if (match(key, "window.inactive.lable.text.color")) { + if (match(key, "window.inactive.label.text.color")) { parse_hexstr(value, theme->window_inactive_label_text_color); }