소스 검색

Fix: Nested Collections get duplicated

Joseph Brandenburg 3 달 전
부모
커밋
51bbb1187c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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