summaryrefslogtreecommitdiff
path: root/src/select/properties/font_weight.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/select/properties/font_weight.c')
-rw-r--r--src/select/properties/font_weight.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select/properties/font_weight.c b/src/select/properties/font_weight.c
index 4fc59e2..39bb473 100644
--- a/src/select/properties/font_weight.c
+++ b/src/select/properties/font_weight.c
@@ -67,7 +67,7 @@ css_error cascade_font_weight(uint32_t opv, css_style *style,
if (outranks_existing(getOpcode(opv), isImportant(opv), state,
isInherit(opv))) {
- return set_font_weight(state->result, value);
+ return set_font_weight(state->computed, value);
}
return CSS_OK;
@@ -81,7 +81,7 @@ css_error set_font_weight_from_hint(const css_hint *hint,
css_error initial_font_weight(css_select_state *state)
{
- return set_font_weight(state->result, CSS_FONT_WEIGHT_NORMAL);
+ return set_font_weight(state->computed, CSS_FONT_WEIGHT_NORMAL);
}
css_error compose_font_weight(const css_computed_style *parent,