aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/storycode.y
diff options
context:
space:
mode:
Diffstat (limited to 'libstorycode/storycode.y')
-rw-r--r--libstorycode/storycode.y3
1 files changed, 2 insertions, 1 deletions
diff --git a/libstorycode/storycode.y b/libstorycode/storycode.y
index 38a0750..66e69a1 100644
--- a/libstorycode/storycode.y
+++ b/libstorycode/storycode.y
@@ -165,7 +165,8 @@ void set_style(struct scpctx *ctx, enum style_element element)
if ( ctx->mask & STYMASK_PADDING ) stylesheet_set_padding(ctx->ss, element, ctx->padding);
if ( ctx->mask & STYMASK_PARASPACE ) stylesheet_set_paraspace(ctx->ss, element, ctx->paraspace);
if ( ctx->mask & STYMASK_FGCOL ) stylesheet_set_fgcol(ctx->ss, element, ctx->fgcol);
- if ( ctx->mask & STYMASK_BGCOL ) stylesheet_set_bgcol(ctx->ss, element, ctx->bgcol);
+ if ( ctx->mask & STYMASK_BGCOL ) stylesheet_set_background(ctx->ss, element, ctx->bggrad,
+ ctx->bgcol, ctx->bgcol2);
ctx->mask = 0;
}