Explorar el Código

Fix: Nested Collections get duplicated

Joseph Brandenburg hace 3 meses
padre
commit
51bbb1187c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      xForm_containers.py

+ 1 - 1
xForm_containers.py

@@ -319,7 +319,7 @@ class xFormBone(xFormNode):
             hierarchy = collection_list.split(">")
             col_parent = None
             for sCol in hierarchy:
-                if ( col := d.collections.get(sCol) ) is None:
+                if ( col := d.collections_all.get(sCol) ) is None:
                     col = d.collections.new(sCol)
                 col.parent = col_parent
                 col_parent = col