diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2018-08-30 12:53:32 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2018-09-04 12:30:24 +0200 |
commit | f5b82ca466dfdeb866062132d0fe495bee70f9f2 (patch) | |
tree | b5a216ed9d011b31b17b41fece44126eecdae4dc /source/fitz | |
parent | 5dc436a66dcdb4191eee3341d632c8f0a23e6c8e (diff) | |
download | mupdf-f5b82ca466dfdeb866062132d0fe495bee70f9f2.tar.xz |
Fix 699177: Don't clamp line width to 1 after scaling by matrix expansion.
Diffstat (limited to 'source/fitz')
-rw-r--r-- | source/fitz/svg-device.c | 2 |
1 files changed, 0 insertions, 2 deletions
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\"", |