diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-12-06 18:08:20 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-12-06 18:08:20 +0100 |
commit | f04ff9cf7f22f9a34f6e9ed1d8159fe67eb2c79d (patch) | |
tree | dd43cdef26db51a5ee7edc232b7406721cce2edf /tree | |
parent | 6162dc43d376fce8906160d51e3ab076d83632aa (diff) | |
download | mupdf-f04ff9cf7f22f9a34f6e9ed1d8159fe67eb2c79d.tar.xz |
xref parse workaround. font config messing. shade cleanup.
Diffstat (limited to 'tree')
-rw-r--r-- | tree/path.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tree/path.c b/tree/path.c index b623d25c..24b4dfc8 100644 --- a/tree/path.c +++ b/tree/path.c @@ -163,6 +163,9 @@ fz_endpath(fz_pathnode *path, fz_pathkind paint, fz_stroke *stroke, fz_dash *das path->miterlimit = stroke->miterlimit; } + if (path->linewidth < 0.01) + path->linewidth = 0.01; + return nil; } |