diff --git a/src/Mod/Sketcher/App/Sketch.cpp b/src/Mod/Sketcher/App/Sketch.cpp index 6bd0e73835..4089f959ce 100644 --- a/src/Mod/Sketcher/App/Sketch.cpp +++ b/src/Mod/Sketcher/App/Sketch.cpp @@ -3325,7 +3325,7 @@ TopoShape Sketch::toShape(void) const // collecting all (non constructive and non external) edges out of the sketch for (;it!=Geoms.end();++it) { - if (!it->external && !it->geo->Construction) { + if (!it->external && !it->geo->Construction && (it->type != Point)) { edge_list.push_back(TopoDS::Edge(it->geo->toShape())); } }