Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenkernel/intern/collection.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/collection.c b/source/blender/blenkernel/intern/collection.c
index 4e4134c7c8f..178a762fd40 100644
--- a/source/blender/blenkernel/intern/collection.c
+++ b/source/blender/blenkernel/intern/collection.c
@@ -485,6 +485,11 @@ void BKE_collection_add_from_collection(Main *bmain,
collection_child_add(collection, collection_dst, 0, true);
is_instantiated = true;
}
+ else if (!is_instantiated && collection_find_child(collection, collection_dst)) {
+ /* If given collection_dst is already instantiated in scene, even if its 'model' src one is
+ * not, do not add it to master scene collection. */
+ is_instantiated = true;
+ }
}
FOREACH_SCENE_COLLECTION_END;