From 103f2c42a83b37bac24b77dc84fe4f7b4cbcfce2 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Tue, 1 Feb 2022 03:41:46 +0200 Subject: [PATCH] - fixed the `cncjob` Tcl command: forgot to pop the arguments that are not recognized by the non-multigo handler --- CHANGELOG.md | 4 ++++ tclCommands/TclCommandCncjob.py | 2 ++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b945431b..4f29b320 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 - fixed all the `laser` preprocessors to work correctly and the resulting GCode to be plotted diff --git a/tclCommands/TclCommandCncjob.py b/tclCommands/TclCommandCncjob.py index e93e4efe..c6314fa1 100644 --- a/tclCommands/TclCommandCncjob.py +++ b/tclCommands/TclCommandCncjob.py @@ -230,6 +230,8 @@ class TclCommandCncjob(TclCommandSignaled): "in format (x, y) - no spaces allowed. But always two comma separated values.") args.pop('name', None) + args.pop('las_power', None) + args.pop('las_min_pwr', None) for arg in args: if arg == "toolchange_xy" or arg == "spindlespeed" or arg == "startz":