From 54497cb0aa0f9d14593fcf35f790c5772d83a769 Mon Sep 17 00:00:00 2001 From: mpv Date: Fri, 20 Oct 2017 08:10:53 +0300 Subject: [PATCH] Fix the problem of projection in case not-supported type of edge is projected for the external feature creation. --- src/SketchPlugin/SketchPlugin_Projection.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/SketchPlugin/SketchPlugin_Projection.cpp b/src/SketchPlugin/SketchPlugin_Projection.cpp index 254ccafc9..fb6815a16 100644 --- a/src/SketchPlugin/SketchPlugin_Projection.cpp +++ b/src/SketchPlugin/SketchPlugin_Projection.cpp @@ -246,7 +246,8 @@ void SketchPlugin_Projection::computeProjection(const std::string& theID) aProjection->boolean(SketchPlugin_Arc::REVERSED_ID())->setValue(isInversed); aProjection->data()->blockSendAttributeUpdated(aWasBlocked, false); - } + } else + return; aProjection->boolean(COPY_ID())->setValue(true); aProjection->execute(); -- 2.39.2