diff --git a/src/st/st-theme-node.c b/src/st/st-theme-node.c index bd2f21f83..bb630d9d3 100644 --- a/src/st/st-theme-node.c +++ b/src/st/st-theme-node.c @@ -581,10 +581,14 @@ get_color_from_term (StThemeNode *node, CRRgb rgb; enum CRStatus status; + if (term_is_inherit (term)) + { + return VALUE_INHERIT; + } /* Since libcroco doesn't know about rgba colors, it can't handle * the transparent keyword */ - if (term_is_transparent (term)) + else if (term_is_transparent (term)) { *color = TRANSPARENT_COLOR; return VALUE_FOUND; @@ -606,9 +610,6 @@ get_color_from_term (StThemeNode *node, if (status != CR_OK) return VALUE_NOT_FOUND; - if (rgb.inherit) - return VALUE_INHERIT; - if (rgb.is_percentage) cr_rgb_compute_from_percentage (&rgb);