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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-11-22 16:03:15 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-11-22 16:03:15 +0400
commit3583686433d1f02f05c92d1e9f95405e9b8e5ae2 (patch)
treec072e12e470238c3fce002cf9aa91529d069ced4 /source/blender/modifiers
parentd4222c2240b018222c0f373a97bf9ad8565d486c (diff)
Fix #33264: Array MOD First Last option does nothing
Diffstat (limited to 'source/blender/modifiers')
-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 d03298991d6..d4463098f07 100644
--- a/source/blender/modifiers/intern/MOD_array.c
+++ b/source/blender/modifiers/intern/MOD_array.c
@@ -316,7 +316,7 @@ static void merge_first_last(BMesh *bm,
BMO_op_exec(bm, &find_op);
/* add new merge targets to weld operator */
- slot_targetmap = BMO_slot_get(weld_op->slots_out, "targetmap");
+ slot_targetmap = BMO_slot_get(weld_op->slots_in, "targetmap");
BMO_ITER (v, &oiter, find_op.slots_out, "targetmap.out", 0) {
v2 = BMO_iter_map_value_p(&oiter);
BMO_slot_map_ptr_insert(weld_op, slot_targetmap, v, v2);