This commit is contained in:
PaddleStroke
2025-07-29 13:49:41 -05:00
committed by Chris Hennes
parent 3321b13218
commit bc207c0a07
+1 -1
View File
@@ -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));