- fixed the cncjob Tcl command: forgot to pop the arguments that are not recognized by the non-multigo handler
This commit is contained in:
@@ -7,6 +7,10 @@ CHANGELOG for FlatCAM beta
|
|||||||
|
|
||||||
=================================================
|
=================================================
|
||||||
|
|
||||||
|
1.02.2022
|
||||||
|
|
||||||
|
- fixed the `cncjob` Tcl command: forgot to pop the arguments that are not recognized by the non-multigo handler
|
||||||
|
|
||||||
31.02.2022
|
31.02.2022
|
||||||
|
|
||||||
- fixed all the `laser` preprocessors to work correctly and the resulting GCode to be plotted
|
- fixed all the `laser` preprocessors to work correctly and the resulting GCode to be plotted
|
||||||
|
|||||||
@@ -230,6 +230,8 @@ class TclCommandCncjob(TclCommandSignaled):
|
|||||||
"in format (x, y) - no spaces allowed. But always two comma separated values.")
|
"in format (x, y) - no spaces allowed. But always two comma separated values.")
|
||||||
|
|
||||||
args.pop('name', None)
|
args.pop('name', None)
|
||||||
|
args.pop('las_power', None)
|
||||||
|
args.pop('las_min_pwr', None)
|
||||||
|
|
||||||
for arg in args:
|
for arg in args:
|
||||||
if arg == "toolchange_xy" or arg == "spindlespeed" or arg == "startz":
|
if arg == "toolchange_xy" or arg == "spindlespeed" or arg == "startz":
|
||||||
|
|||||||
Reference in New Issue
Block a user