Merge pull request #1134 from mlampert/bugfix/circular-hole-setup

Path: Fix for missing circular hole base class initialisation during creation.
This commit is contained in:
Yorik van Havre
2017-12-03 15:37:15 -02:00
committed by GitHub
2 changed files with 3 additions and 1 deletions

View File

@@ -183,6 +183,8 @@ class ObjectOp(PathOp.ObjectOp):
pass
def findAllHoles(self, obj):
if not self.getJob(obj):
return
features = []
if self.baseIsArchPanel(obj, self.baseobject):
holeshapes = self.baseobject.Proxy.getHoles(self.baseobject, transform=True)

View File

@@ -40,7 +40,7 @@ __author__ = "sliptonic (Brad Collette)"
__url__ = "http://www.freecadweb.org"
__doc__ = "Path Drilling operation."
if True:
if False:
PathLog.setLevel(PathLog.Level.DEBUG, PathLog.thisModule())
PathLog.trackModule(PathLog.thisModule())
else: