Fix T62622: Animating vertex does not update viewport
Missing dependency graph update due to wrong relation.
This commit is contained in:
@@ -336,8 +336,16 @@ RNANodeIdentifier RNANodeQuery::construct_node_identifier(
|
||||
else if (RNA_struct_is_a(ptr->type, &RNA_ImageUser)) {
|
||||
if (GS(node_identifier.id->name) == ID_NT) {
|
||||
node_identifier.type = NodeType::ANIMATION;
|
||||
node_identifier.operation_code = OperationCode::IMAGE_ANIMATION;
|
||||
node_identifier.operation_code = OperationCode::IMAGE_ANIMATION;
|
||||
return node_identifier;
|
||||
}
|
||||
}
|
||||
else if (ELEM(ptr->type, &RNA_MeshVertex,
|
||||
&RNA_MeshEdge,
|
||||
&RNA_MeshLoop,
|
||||
&RNA_MeshPolygon))
|
||||
{
|
||||
node_identifier.type = NodeType::GEOMETRY;
|
||||
return node_identifier;
|
||||
}
|
||||
if (prop != NULL) {
|
||||
|
Reference in New Issue
Block a user