Skip to content

Commit

Permalink
Fix getGridOrigin for v5
Browse files Browse the repository at this point in the history
  • Loading branch information
yaqwsx committed Mar 8, 2022
1 parent d6556ab commit bb788e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kikit/panelize.py
Original file line number Diff line number Diff line change
Expand Up @@ -1358,7 +1358,7 @@ def getGridOrigin(self):
if isV6():
return self.board.GetDesignSettings().GetGridOrigin()
else:
self.board.GetGridOrigin()
return self.board.GetGridOrigin()

def _buildPartitionLineFromBB(self, partition):
for s in self.substrates:
Expand Down

0 comments on commit bb788e9

Please sign in to comment.