This commit is contained in:
PaddleStroke
2025-07-29 17:54:58 +02:00
committed by Chris Hennes
parent 3321b13218
commit bc207c0a07

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));