summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--svgtiny.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/svgtiny.c b/svgtiny.c
index 10635ac..ab6b6dd 100644
--- a/svgtiny.c
+++ b/svgtiny.c
@@ -1014,8 +1014,8 @@ struct svgtiny_shape *svgtiny_add_shape(struct svgtiny_parse_state *state)
shape->text = 0;
shape->fill = state->fill;
shape->stroke = state->stroke;
- shape->stroke_width = 1; /*state->stroke_width *
- (state->ctm.a + state->ctm.d) / 2;*/
+ shape->stroke_width = state->stroke_width *
+ (state->ctm.a + state->ctm.d) / 2;
return shape;
}