From e9de8d4e98b2c8cd33a1167d1b97b717b48178bc Mon Sep 17 00:00:00 2001 From: Daniel Wood Date: Wed, 5 May 2021 20:33:26 +0100 Subject: [PATCH] use correct feedrate for rapid moves --- src/Mod/Path/PathScripts/PathDrilling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/PathScripts/PathDrilling.py b/src/Mod/Path/PathScripts/PathDrilling.py index d8c5c3e05a..8d16b3761f 100644 --- a/src/Mod/Path/PathScripts/PathDrilling.py +++ b/src/Mod/Path/PathScripts/PathDrilling.py @@ -155,7 +155,7 @@ class ObjectDrilling(PathCircularHoleBase.ObjectOp): # move to hole location self.commandlist.append(Path.Command('G0', {'X': p['x'], 'Y': p['y'], 'F': self.horizRapid})) startHeight = obj.StartDepth.Value + parentJob.SetupSheet.SafeHeightOffset.Value - self.commandlist.append(Path.Command('G0', {'Z': startHeight, 'F': self.vertFeed})) + self.commandlist.append(Path.Command('G0', {'Z': startHeight, 'F': self.vertRapid})) self.commandlist.append(Path.Command('G1', {'Z': obj.StartDepth.Value, 'F': self.vertFeed})) # Update changes to parameters