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:
authorCampbell Barton <ideasman42@gmail.com>2018-05-08 18:06:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-08 18:06:30 +0300
commit0e964afaa4ad3f836f371f5b15a2c2275bdcb0f7 (patch)
treed1795e9f2825b5e4448e3dcf9be9308dc8dea506 /source/blender/modifiers/intern/MOD_array.c
parentfa69ce9e3a682426aa0d247f4720571889d5a6c2 (diff)
Cleanup: use 'nomain' when not in library data
Rename only.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_array.c')
-rw-r--r--source/blender/modifiers/intern/MOD_array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_array.c b/source/blender/modifiers/intern/MOD_array.c
index 45678947df5..d5a031af876 100644
--- a/source/blender/modifiers/intern/MOD_array.c
+++ b/source/blender/modifiers/intern/MOD_array.c
@@ -488,7 +488,7 @@ static Mesh *arrayModifier_doArray(
result_npolys = chunk_npolys * count + start_cap_npolys + end_cap_npolys;
/* Initialize a result dm */
- result = BKE_mesh_from_template(mesh, result_nverts, result_nedges, 0, result_nloops, result_npolys);
+ result = BKE_mesh_new_nomain_from_template(mesh, result_nverts, result_nedges, 0, result_nloops, result_npolys);
result_dm_verts = result->mvert;
if (use_merge) {