Skip to content

Commit

Permalink
Do not use removed API in KiCAD 8
Browse files Browse the repository at this point in the history
  • Loading branch information
yaqwsx committed Feb 24, 2024
1 parent ba5a426 commit 611dc10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kikit/actionPlugins/panelize.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ def transplateBoard(source, target):
target.SetProperties(source.GetProperties())
target.SetPageSettings(source.GetPageSettings())
target.SetTitleBlock(source.GetTitleBlock())
target.SetZoneSettings(source.GetZoneSettings())
if not isV8():
target.SetZoneSettings(source.GetZoneSettings())


class SFile():
Expand Down

0 comments on commit 611dc10

Please sign in to comment.