- minor change

This commit is contained in:
Marius Stanciu 2020-08-20 01:20:01 +03:00
parent a75e7e5cf8
commit f610739390
1 changed files with 5 additions and 1 deletions

View File

@ -682,7 +682,11 @@ class CNCJobObject(FlatCAMObj, CNCjob):
new_x = xmin
for x in range(cols):
new_x += dx
points.append((new_x, new_y))
formatted_point = (
self.app.dec_format(new_x, self.app.decimals),
self.app.dec_format(new_y, self.app.decimals)
)
points.append(formatted_point)
pt_id = 0
pts_list = []