Assembly: Fix unconnected Joints always touched

Fix https://github.com/FreeCAD/FreeCAD/issues/22642
This commit is contained in:
PaddleStroke
2025-07-21 17:30:31 +02:00
committed by Chris Hennes
parent c99cd73cd6
commit 80935791fd

View File

@@ -541,6 +541,7 @@ void AssemblyObject::recomputeJointPlacements(std::vector<App::DocumentObject*>
Py::Tuple args(1);
args.setItem(0, Py::asObject(joint->getPyObject()));
Py::Callable(attr).apply(args);
joint->purgeTouched();
}
}
}