From 715f98d1f320019c378bdaba56ba423232567ec7 Mon Sep 17 00:00:00 2001 From: wmayer Date: Fri, 13 Apr 2012 15:31:04 +0200 Subject: [PATCH] 0000624: Trim tool doesn't work with construction lines --- src/Mod/Part/App/Part2DObject.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Mod/Part/App/Part2DObject.cpp b/src/Mod/Part/App/Part2DObject.cpp index eb44dc0a3..d9280bc46 100644 --- a/src/Mod/Part/App/Part2DObject.cpp +++ b/src/Mod/Part/App/Part2DObject.cpp @@ -235,7 +235,8 @@ bool Part2DObject::seekTrimPoints(const std::vector &geomlist, gp_Pnt2d p1,p2; Handle_Geom2d_Curve secondaryCurve; for (int id=0; id < int(geomlist.size()); id++) { - if (id != GeoId && !geomlist[id]->Construction) { + // #0000624: Trim tool doesn't work with construction lines + if (id != GeoId/* && !geomlist[id]->Construction*/) { geom = (geomlist[id])->handle(); curve3d = Handle_Geom_Curve::DownCast(geom); if (!curve3d.IsNull()) {