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/python/intern')
-rw-r--r--source/blender/python/intern/bpy_rna_id_collection.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_rna_id_collection.c b/source/blender/python/intern/bpy_rna_id_collection.c
index 10b7ba50988..bd2058394d8 100644
--- a/source/blender/python/intern/bpy_rna_id_collection.c
+++ b/source/blender/python/intern/bpy_rna_id_collection.c
@@ -479,8 +479,9 @@ static PyObject *bpy_link_multiple(PyObject *self, PyObject *args, PyObject *kwd
objs[i] = obj;
}
Py_DECREF(objects_fast);
+
+ BKE_collection_object_add_multiple(bmain, collection, objs, objects_len);
for (int j = 0; j < objects_len; j++) {
- BKE_collection_object_add(bmain, collection, objs[j]);
WM_main_add_notifier(NC_OBJECT | ND_DRAW, &objs[j]->id);
}
MEM_freeN(objs);