Skip to content
Snippets Groups Projects
Commit 03bd6aa6 authored by mehtank's avatar mehtank
Browse files

Fix jointify bug so finger joints work again

parent 048cb836
2 merge requests!34V0.4,!26Fix jointify bug so finger joints work again
......@@ -40,7 +40,7 @@ class GraphComposable(Composable, BaseGraph):
self._thickness = ka.get("thickness", 0)
self.tabify(ka.pop("tabFace", BeamTabs), ka.pop("tabDecoration", BeamTabDecoration),
ka.pop("slotFace", None), ka.pop("slotDecoration", BeamSlotDecoration), **ka)
if ka.pop("joint", None):
if "joint" in ka:
self.jointify(**ka)
self.place(transform3D=ka.pop("transform3D", None))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment