Quellcode durchsuchen

Fix: Nested Collections get duplicated

Joseph Brandenburg vor 3 Monaten
Ursprung
Commit
51bbb1187c
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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