mirror of
https://github.com/labwc/labwc.git
synced 2025-11-04 13:30:07 -05:00
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:
parent
e2ae63a7cf
commit
6bcefc27a8
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue