From 55fa1a5646d4ec2483b3645efa07eff3fc2245cb 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 48db9c3ae..4aadcdd97 100644 --- a/src/PartSet/PartSet_SketcherMgr.cpp +++ b/src/PartSet/PartSet_SketcherMgr.cpp @@ -2361,7 +2361,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 aPrsWidth = thePrs->width(); thePrs->setWidth(aPrsWidth / 2.5); } -- 2.39.2