Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17597,6 +17597,7 @@ def width(self):
TEXT_COLLECT_VECTORS = mupdf.FZ_STEXT_COLLECT_VECTORS
TEXT_IGNORE_ACTUALTEXT = mupdf.FZ_STEXT_IGNORE_ACTUALTEXT
TEXT_SEGMENT = mupdf.FZ_STEXT_SEGMENT
TEXT_CLIP = mupdf.FZ_STEXT_CLIP
if mupdf_version_tuple >= (1, 27, 1):
TEXT_LAZY_VECTORS = mupdf.FZ_STEXT_LAZY_VECTORS

Expand Down
2 changes: 2 additions & 0 deletions tests/test_font.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,8 @@ def test_3780():
# print(f' {n}: {v!r}')
for i, block in enumerate(d['blocks']):
print(f'block {i}:')
if block['type'] != 0:
continue
for j, line in enumerate(block['lines']):
print(f' line {j}:')
for k, span in enumerate(line['spans']):
Expand Down