From db14375dd7a1d00c77e83064210643c0a19f92e4 Mon Sep 17 00:00:00 2001 From: vsv Date: Fri, 26 Jun 2020 15:54:37 +0300 Subject: [PATCH] Fix bug with width of copy objects --- src/PartSet/PartSet_SketcherMgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PartSet/PartSet_SketcherMgr.cpp b/src/PartSet/PartSet_SketcherMgr.cpp index cebeec586..1a3f78e58 100644 --- a/src/PartSet/PartSet_SketcherMgr.cpp +++ b/src/PartSet/PartSet_SketcherMgr.cpp @@ -2364,7 +2364,7 @@ void PartSet_SketcherMgr::customizeSketchPresentation(const ObjectPtr& theObject thePrs->setWidth(17); // thePrs->setPointMarker(1, 1.); // Set point as a '+' symbol } - if (isCopy(aFeature) && !isIncludeToResult(aFeature)) { + if (isCopy(aFeature) || !isIncludeToResult(aFeature)) { double aWidth = thePrs->width(); thePrs->setWidth(aWidth / 2.5); } -- 2.39.2