Assembly: Fix https://github.com/FreeCAD/FreeCAD/issues/22815
This commit is contained in:
committed by
Chris Hennes
parent
3321b13218
commit
bc207c0a07
@@ -192,7 +192,7 @@ PyObject* AssemblyObjectPy::exportAsASMT(PyObject* args) const
|
||||
Py::List AssemblyObjectPy::getJoints() const
|
||||
{
|
||||
Py::List ret;
|
||||
std::vector<App::DocumentObject*> list = getAssemblyObjectPtr()->getJoints();
|
||||
std::vector<App::DocumentObject*> list = getAssemblyObjectPtr()->getJoints(false);
|
||||
|
||||
for (auto It : list) {
|
||||
ret.append(Py::Object(It->getPyObject(), true));
|
||||
|
||||
Reference in New Issue
Block a user