From c7acb2db3d76a2f7aff12186b37b2ece46e14e2a Mon Sep 17 00:00:00 2001 From: sliptonic Date: Mon, 24 Apr 2017 09:07:27 -0500 Subject: [PATCH] Path: use verbose mode for fromShapes() to get relative arc centers --- src/Mod/Path/PathScripts/PathContour.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Path/PathScripts/PathContour.py b/src/Mod/Path/PathScripts/PathContour.py index 99cef5a55c..863942c4bb 100644 --- a/src/Mod/Path/PathScripts/PathContour.py +++ b/src/Mod/Path/PathScripts/PathContour.py @@ -158,9 +158,9 @@ class ObjectContour: lshapes.append(c) if start is None: - pp = Path.fromShapes(lshapes) + pp = Path.fromShapes(lshapes, verbose=False) else: - pp = Path.fromShapes(lshapes, start) + pp = Path.fromShapes(lshapes, start, verbose=False) return pp