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>2013-12-21 21:45:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-12-21 21:45:00 +0400
commitc80c596194b998bd7cd5ba4ec0eb764e19d323b4 (patch)
tree6f939a7c15cc981f2fc15424de1e98244dcc94de /source/blender/modifiers/intern
parent158b4e61a050a25fec47a00797ab7db46fc3198c (diff)
Fix for mesh deform modifier missing copy for flag.
Diffstat (limited to 'source/blender/modifiers/intern')
-rw-r--r--source/blender/modifiers/intern/MOD_meshdeform.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/modifiers/intern/MOD_meshdeform.c b/source/blender/modifiers/intern/MOD_meshdeform.c
index e540d5c1b2c..61dcc1fbb9d 100644
--- a/source/blender/modifiers/intern/MOD_meshdeform.c
+++ b/source/blender/modifiers/intern/MOD_meshdeform.c
@@ -82,6 +82,7 @@ static void copyData(ModifierData *md, ModifierData *target)
MeshDeformModifierData *tmmd = (MeshDeformModifierData *) target;
tmmd->gridsize = mmd->gridsize;
+ tmmd->flag = mmd->flag;
tmmd->object = mmd->object;
}