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>2016-09-30 12:13:28 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-09-30 12:13:28 +0300
commit6a4ca1e5c0a08806a4b5bbe4a68dfafff0104ae7 (patch)
tree2b6cef4f08d84e3996bb074695bbfbefc529c9e0 /source/blender/modifiers/intern/MOD_normal_edit.c
parenteb9521ae0469156d4f48f5defbb05046416b2af4 (diff)
Normal edit modifier: Fix relation builder for the new dependency graph
Diffstat (limited to 'source/blender/modifiers/intern/MOD_normal_edit.c')
-rw-r--r--source/blender/modifiers/intern/MOD_normal_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_normal_edit.c b/source/blender/modifiers/intern/MOD_normal_edit.c
index ceb7dc02699..ffe5e6aa7c7 100644
--- a/source/blender/modifiers/intern/MOD_normal_edit.c
+++ b/source/blender/modifiers/intern/MOD_normal_edit.c
@@ -533,7 +533,7 @@ static void updateDepsgraph(ModifierData *md,
{
NormalEditModifierData *smd = (NormalEditModifierData *) md;
if (smd->target) {
- DEG_add_object_relation(node, smd->target, DEG_OB_COMP_GEOMETRY, "NormalEdit Modifier");
+ DEG_add_object_relation(node, smd->target, DEG_OB_COMP_TRANSFORM, "NormalEdit Modifier");
}
}