summaryrefslogtreecommitdiff
path: root/src/select/properties/display.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/select/properties/display.c')
-rw-r--r--src/select/properties/display.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select/properties/display.c b/src/select/properties/display.c
index 02f5e1e..e5e7711 100644
--- a/src/select/properties/display.c
+++ b/src/select/properties/display.c
@@ -97,10 +97,10 @@ css_error css__compose_display(const css_computed_style *parent,
const css_computed_style *child,
css_computed_style *result)
{
- uint8_t type = get_display_static(child);
+ uint8_t type = get_display(child);
if (type == CSS_DISPLAY_INHERIT) {
- type = get_display_static(parent);
+ type = get_display(parent);
}
return set_display(result, type);