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-06-03 02:40:45 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-03 02:40:45 +0400
commitad0305281b07eccf0b905d408c5c12765095e2f7 (patch)
treeef56239aa0ce43e1802200a6a13d7d6fa1027fbd /source/blender/modifiers
parent7bb1279279a07a5606e710dd7777c540e24b8549 (diff)
fix [#35545] Weight paint with mirror modifier does not accurate represent bone influence
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_mirror.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_mirror.c b/source/blender/modifiers/intern/MOD_mirror.c
index 2e7b7c7ab7d..d50e69217f6 100644
--- a/source/blender/modifiers/intern/MOD_mirror.c
+++ b/source/blender/modifiers/intern/MOD_mirror.c
@@ -345,7 +345,9 @@ ModifierTypeInfo modifierType_Mirror = {
eModifierTypeFlag_SupportsMapping |
eModifierTypeFlag_SupportsEditmode |
eModifierTypeFlag_EnableInEditmode |
- eModifierTypeFlag_AcceptsCVs,
+ eModifierTypeFlag_AcceptsCVs |
+ /* this is only the case when 'MOD_MIR_VGROUP' is used */
+ eModifierTypeFlag_UsesPreview,
/* copyData */ copyData,
/* deformVerts */ NULL,