- added protection against creating CNCJob from an empty Geometry object (with no geometry inside)

- changed the shortcut key for YOuTube channel from F2 to key F4
This commit is contained in:
Marius Stanciu
2019-02-21 01:14:55 +02:00
committed by Marius S
parent f62e7e51fd
commit 4ab2374903
5 changed files with 326 additions and 27 deletions

View File

@@ -5152,7 +5152,9 @@ class CNCjob(Geometry):
log.debug("Starting G-Code...")
path_count = 0
current_pt = (0, 0)
pt, geo = storage.nearest(current_pt)
try:
while True:
path_count += 1