From 0807e9aaf12cbda4c59dd892f0fae59c5fdc3414 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Mon, 10 Feb 2020 04:28:46 +0200 Subject: [PATCH] - solved bug that made drilling with Marlin preprocessor very slow --- FlatCAMObj.py | 1 + README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/FlatCAMObj.py b/FlatCAMObj.py index 6567993f..da4a2a07 100644 --- a/FlatCAMObj.py +++ b/FlatCAMObj.py @@ -3591,6 +3591,7 @@ class FlatCAMExcellon(FlatCAMObj, Excellon): job_obj.tool_offset = self.tool_offset job_obj.z_move = float(self.options["travelz"]) job_obj.feedrate = float(self.options["feedrate"]) + job_obj.z_feedrate = float(self.options["feedrate"]) job_obj.feedrate_rapid = float(self.options["feedrate_rapid"]) job_obj.spindlespeed = float(self.options["spindlespeed"]) if self.options["spindlespeed"] != 0 else None diff --git a/README.md b/README.md index 49619892..8baee38b 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ CAD program, and create G-Code for Isolation routing. 10.02.2020 - 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 8.02.2020