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:
authorAlexander Gavrilov <angavrilov@gmail.com>2018-11-14 14:01:28 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2018-11-14 14:01:40 +0300
commit5c27c76ed3a9683c5d54745add6713eb562996e8 (patch)
treed6e3726fd08ce8cc8298c54fa8f2e9ccf559c041 /source/blender/makesrna/intern/rna_constraint.c
parent43ee433dceccf13868da683ec781b30f17185a2b (diff)
Depsgraph: fix relations for drivers on bone weight in Armature constraint.
Diffstat (limited to 'source/blender/makesrna/intern/rna_constraint.c')
-rw-r--r--source/blender/makesrna/intern/rna_constraint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_constraint.c b/source/blender/makesrna/intern/rna_constraint.c
index d7fd0aae917..898852739eb 100644
--- a/source/blender/makesrna/intern/rna_constraint.c
+++ b/source/blender/makesrna/intern/rna_constraint.c
@@ -314,7 +314,7 @@ static bConstraint *rna_constraint_from_target(PointerRNA *ptr)
Object *ob = ptr->id.data;
bConstraintTarget *tgt = ptr->data;
- return BKE_constraint_find_from_target(ob, tgt);
+ return BKE_constraint_find_from_target(ob, tgt, NULL);
}
static char *rna_ConstraintTarget_path(PointerRNA *ptr)