From 40b1093bdbefac0421d9b4a923771e959cec44e5 Mon Sep 17 00:00:00 2001 From: pekkaroi Date: Wed, 2 Aug 2017 19:02:48 +0300 Subject: [PATCH] PATH: Clarify comment in PathDrilling --- 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 4ff4e000e4..a6133ea168 100644 --- a/src/Mod/Path/PathScripts/PathDrilling.py +++ b/src/Mod/Path/PathScripts/PathDrilling.py @@ -594,7 +594,7 @@ class TaskPanel: diameters.append(sub.BoundBox.XLength) # check for arcs - isDrillable ignores them. elif type(sub.Curve) == Part.Circle: - PathLog.debug("Selection is a drillable arc edge, lets drill that") + PathLog.debug("Selection is an arc or circle edge, lets drill the center") names.append(objectname + '.' + sel.SubElementNames[i]) positions.append(FreeCAD.Vector(sub.Curve.Center.x, sub.Curve.Center.y, 0)) enabled.append(1)