- refactoring all the references to object options property to obj_options to make a difference with the application options property

This commit is contained in:
Marius Stanciu
2022-02-16 10:47:12 +02:00
committed by Marius
parent de1d97327c
commit 1681b327ed
54 changed files with 896 additions and 892 deletions

View File

@@ -203,7 +203,7 @@ class TclCommandCncjob(TclCommandSignaled):
if 'dwelltime' in args:
args["dwell"] = True
if args['dwelltime'] is None:
args["dwelltime"] = float(obj.options["dwelltime"])
args["dwelltime"] = float(obj.obj_options["dwelltime"])
else:
args["dwelltime"] = float(args['dwelltime'])
else: