Skip to content

Commit

Permalink
Fix compatibility with future kicad testing build
Browse files Browse the repository at this point in the history
Fixes #420
  • Loading branch information
qu1ck committed Oct 9, 2023
1 parent 3fe22d9 commit 865cab9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions InteractiveHtmlBom/ecad/kicad.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,7 @@ def parse_text(self, d):
"svgpath": create_path(lines)
}
elif hasattr(d, 'GetEffectiveTextShape'):
shape = d.GetEffectiveTextShape(
aTriangulate=False) # type: pcbnew.SHAPE_COMPOUND
shape = d.GetEffectiveTextShape(False) # type: pcbnew.SHAPE_COMPOUND
segments = []
polygons = []
for s in shape.GetSubshapes():
Expand Down

0 comments on commit 865cab9

Please sign in to comment.