diff options
author | Tor Andersson <tor@ghostscript.com> | 2010-06-17 10:24:13 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2010-06-17 10:24:13 +0200 |
commit | b058141ef35119f3e0b51c73716abbe235b034e2 (patch) | |
tree | d8d1c52b72bf8dd89002c840512cb6ccc343c974 /fitz | |
parent | c2a2f1cf5349992896a86bcbcf648a0a27f4be9d (diff) | |
download | mupdf-b058141ef35119f3e0b51c73716abbe235b034e2.tar.xz |
Fix a handful typos reported in bug 691398.
Diffstat (limited to 'fitz')
-rw-r--r-- | fitz/dev_text.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fitz/dev_text.c b/fitz/dev_text.c index 30643dd1..e598eb84 100644 --- a/fitz/dev_text.c +++ b/fitz/dev_text.c @@ -280,7 +280,7 @@ fz_textextractspan(fz_textspan **last, fz_text *text, fz_matrix ctm, fz_point *p dist2 = dx * dx + dy * dy; /* Add space and newlines based on pen movement */ - if (fabs(dist2) > size * size * 0.1) + if (fabs(dist2) > size * size * 0.04) { if (fabs(cross) > 0.1) { |