Increase minimum word distance.
This commit is contained in:
parent
95de2d948b
commit
a3549220bf
1 changed files with 1 additions and 1 deletions
|
|
@ -208,7 +208,7 @@ class Line(PageObject):
|
||||||
if glyph not in bodies: # freestanding diacritic-like glyphacter without a body
|
if glyph not in bodies: # freestanding diacritic-like glyphacter without a body
|
||||||
yield glyph
|
yield glyph
|
||||||
|
|
||||||
def _insert_spaces(self, glyphs, min_distance=10):
|
def _insert_spaces(self, glyphs, min_distance=15):
|
||||||
for glyph, next_glyph in pairwise(glyphs):
|
for glyph, next_glyph in pairwise(glyphs):
|
||||||
yield glyph
|
yield glyph
|
||||||
if next_glyph is not None:
|
if next_glyph is not None:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue