From f5b82ca466dfdeb866062132d0fe495bee70f9f2 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Thu, 30 Aug 2018 12:53:32 +0200 Subject: Fix 699177: Don't clamp line width to 1 after scaling by matrix expansion. --- source/fitz/svg-device.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'source') diff --git a/source/fitz/svg-device.c b/source/fitz/svg-device.c index 6e91aa11..d0d9f50e 100644 --- a/source/fitz/svg-device.c +++ b/source/fitz/svg-device.c @@ -177,8 +177,6 @@ svg_dev_stroke_state(fz_context *ctx, svg_device *sdev, const fz_stroke_state *s if (exp == 0) exp = 1; exp = stroke_state->linewidth/exp; - if (exp < 1) - exp = 1; fz_write_printf(ctx, out, " stroke-width=\"%g\"", exp); fz_write_printf(ctx, out, " stroke-linecap=\"%s\"", -- cgit v1.2.3