From e3be6ff22f1660537d95adcbb7183d500fd9d0f8 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Mon, 10 Feb 2020 04:30:32 +0200 Subject: [PATCH] - applied the fix for above bug to the TclCommand Drillcncjob too --- README.md | 1 + tclCommands/TclCommandDrillcncjob.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 8baee38b..1466cc4b 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ CAD program, and create G-Code for Isolation routing. - optimized the Paint and NCC Tools. When the Lines type of painting/clearing is used, the lines will try to arrange themselves on the direction that the lines length clearing the polygon are bigger - solved bug that made drilling with Marlin preprocessor very slow +- applied the fix for above bug to the TclCommand Drillcncjob too 8.02.2020 diff --git a/tclCommands/TclCommandDrillcncjob.py b/tclCommands/TclCommandDrillcncjob.py index a815569c..a420f2ae 100644 --- a/tclCommands/TclCommandDrillcncjob.py +++ b/tclCommands/TclCommandDrillcncjob.py @@ -185,7 +185,10 @@ class TclCommandDrillcncjob(TclCommandSignaled): opt_type = args["opt_type"] if "opt_type" in args and args["opt_type"] else 'B' job_obj.z_move = args["travelz"] if "travelz" in args and args["travelz"] else obj.options["travelz"] + job_obj.feedrate = args["feedrate"] if "feedrate" in args and args["feedrate"] else obj.options["feedrate"] + job_obj.z_feedrate = args["feedrate"] if "feedrate" in args and args["feedrate"] else \ + obj.options["feedrate"] job_obj.feedrate_rapid = args["feedrate_rapid"] \ if "feedrate_rapid" in args and args["feedrate_rapid"] else obj.options["feedrate_rapid"]