diff --git a/src/Mod/Path/App/AreaPyImp.cpp b/src/Mod/Path/App/AreaPyImp.cpp index 1be34defcd..dbf3204119 100644 --- a/src/Mod/Path/App/AreaPyImp.cpp +++ b/src/Mod/Path/App/AreaPyImp.cpp @@ -365,7 +365,7 @@ PyObject* AreaPy::makeSections(PyObject *args, PyObject *keywds) Py::List ret; for(auto &area : sections) - ret.append(Py::asObject(new AreaPy(new Area(*area,false)))); + ret.append(Py::asObject(new AreaPy(new Area(*area,true)))); return Py::new_reference_to(ret); }