Fixes #178. Use list instead of tuple of points.
This commit is contained in:
@@ -139,7 +139,8 @@ class DblSidedTool(FlatCAMTool):
|
||||
dia = self.drill_dia.get_value()
|
||||
tools = {"1": {"C": dia}}
|
||||
|
||||
holes = self.alignment_holes.get_value()
|
||||
# holes = self.alignment_holes.get_value()
|
||||
holes = eval('[{}]'.format(self.alignment_holes.text()))
|
||||
drills = []
|
||||
|
||||
for hole in holes:
|
||||
|
||||
Reference in New Issue
Block a user