From 29013240effdd4259e79177ced6163645da4e543 Mon Sep 17 00:00:00 2001 From: kreso-t Date: Wed, 22 Aug 2018 19:32:32 +0200 Subject: [PATCH] Adaptive path to allow selection of edges --- src/Mod/Path/PathScripts/PathSelection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Path/PathScripts/PathSelection.py b/src/Mod/Path/PathScripts/PathSelection.py index 0d1123b249..d060520be2 100644 --- a/src/Mod/Path/PathScripts/PathSelection.py +++ b/src/Mod/Path/PathScripts/PathSelection.py @@ -160,14 +160,14 @@ class POCKETGate: class ADAPTIVEGate: def allow(self, doc, obj, sub): - adaptive = False + adaptive = True try: obj = obj.Shape except: return False if obj.ShapeType == 'Edge': - adaptive = False + adaptive = True elif obj.ShapeType == 'Face': adaptive = True