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 <joshua@froggi.es>
This commit is contained in:
Joshie 2021-10-16 23:17:46 +00:00 committed by Johan Malm
parent e2ae63a7cf
commit 6bcefc27a8

View file

@ -161,7 +161,7 @@ entry(struct theme *theme, const char *key, const char *value)
if (match(key, "window.active.label.text.color")) { if (match(key, "window.active.label.text.color")) {
parse_hexstr(value, theme->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); parse_hexstr(value, theme->window_inactive_label_text_color);
} }