Skip to content

Commit 00c39d6

Browse files
src/__init__.py: fix mupdf version for use of argb instead of color.
1 parent d2a91c7 commit 00c39d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16551,7 +16551,7 @@ def __str__(self):
1655116551
style.size = ch.m_internal.size
1655216552
style.flags = flags
1655316553
style.font = JM_font_name(mupdf.FzFont(mupdf.ll_fz_keep_font(ch.m_internal.font)))
16554-
if mupdf_version_tuple >= (1, 26):
16554+
if mupdf_version_tuple >= (1, 25):
1655516555
style.color = ch.m_internal.argb
1655616556
else:
1655716557
style.color = ch.m_internal.color

0 commit comments

Comments
 (0)