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>2018-07-11 11:23:54 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-07-11 11:23:54 +0300
commited66388c875a2cbab94abbedbae174829cb48ad9 (patch)
tree4e1298ce6c6758c9415e1a2c112c9e7cd1208e6f /source/blender/depsgraph/intern/depsgraph.cc
parent17bc05672681754a76e60c690a99eb9af71467f9 (diff)
parent0ed54cf9ba9f5b5df8fbcbe15243dd88621205a0 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph.cc b/source/blender/depsgraph/intern/depsgraph.cc
index ddc6e44ee1b..2a24d72eb67 100644
--- a/source/blender/depsgraph/intern/depsgraph.cc
+++ b/source/blender/depsgraph/intern/depsgraph.cc
@@ -140,9 +140,9 @@ static bool pointer_to_component_node_criteria(
bPoseChannel *pchan = (bPoseChannel *)ptr->data;
if (prop != NULL && RNA_property_is_idprop(prop)) {
*type = DEG_NODE_TYPE_PARAMETERS;
- *subdata = "";
- *operation_code = DEG_OPCODE_PARAMETERS_EVAL;
- *operation_name = pchan->name;
+ *operation_code = DEG_OPCODE_ID_PROPERTY;
+ *operation_name = RNA_property_identifier((PropertyRNA *)prop);
+ *operation_name_tag = -1;
}
else {
/* Bone - generally, we just want the bone component. */