+ fix issue with conflicting constraints in fixed arcs

git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5361 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
This commit is contained in:
logari81 2011-12-29 20:12:57 +00:00
parent bdf43fcaa4
commit c6de527391

View File

@ -321,7 +321,8 @@ int Sketch::addArc(const Part::GeomArcOfCircle &circleSegment, bool fixed)
Geoms.push_back(def);
// arcs require an ArcRules constraint for the end points
GCSsys.addConstraintArcRules(a);
if (!fixed)
GCSsys.addConstraintArcRules(a);
// return the position of the newly added geometry
return Geoms.size()-1;