Compare commits

...

2 Commits

Author SHA1 Message Date
jan
74b9672b4a bump version to v1.5 2025-10-12 23:37:53 -07:00
jan
0ac4c3b275 fix path extensions not getting written correctly 2025-10-12 23:37:53 -07:00
2 changed files with 2 additions and 2 deletions

View File

@ -36,5 +36,5 @@ from . import (
)
__author__ = 'Jan Petykiewicz'
__version__ = '1.4'
__version__ = '1.5'

View File

@ -316,7 +316,7 @@ class Path(Element):
if self.width != 0:
b += WIDTH.write(stream, self.width)
if self.path_type < 4:
if self.path_type == 4:
bgn_ext, end_ext = self.extension
if bgn_ext != 0:
b += BGNEXTN.write(stream, bgn_ext)