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>2010-11-17 04:50:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-11-17 04:50:25 +0300
commit2d6cf9ee6b5864117a32fcbcaaadbee2bce8a930 (patch)
treee8d5018dacc6e115602555fd82d5ec03e3608674 /source/blender/modifiers/intern/MOD_armature.c
parent98896d55d01b41f2ba5ad890db78b209807576f6 (diff)
the 'Multi' option was not being copied with the armature modifier.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_armature.c')
-rw-r--r--source/blender/modifiers/intern/MOD_armature.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/modifiers/intern/MOD_armature.c b/source/blender/modifiers/intern/MOD_armature.c
index 71be58c9982..56c3bd3acb5 100644
--- a/source/blender/modifiers/intern/MOD_armature.c
+++ b/source/blender/modifiers/intern/MOD_armature.c
@@ -61,6 +61,7 @@ static void copyData(ModifierData *md, ModifierData *target)
tamd->object = amd->object;
tamd->deformflag = amd->deformflag;
+ tamd->multi = amd->multi;
strncpy(tamd->defgrp_name, amd->defgrp_name, 32);
}