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>2019-01-03 17:44:53 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-01-03 17:48:02 +0300
commit8e9c16b0cf488d3e849405387f7b2e6cf8d7d57a (patch)
tree7ddf8b6b9cf1838c85a5f8a80ddacb051f31bffb /source/blender/depsgraph/intern/depsgraph.cc
parentd98ec04341260d1f2e5967105013472d85f7af5d (diff)
Fix T59072: Text extrusion cannot be animated
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph.cc b/source/blender/depsgraph/intern/depsgraph.cc
index 2982225bc3a..dabab482eff 100644
--- a/source/blender/depsgraph/intern/depsgraph.cc
+++ b/source/blender/depsgraph/intern/depsgraph.cc
@@ -261,7 +261,7 @@ static bool pointer_to_component_node_criteria(
*type = DEG_NODE_TYPE_SHADING;
return true;
}
- else if (ptr->type == &RNA_Curve) {
+ else if (ELEM(ptr->type, &RNA_Curve, &RNA_TextCurve)) {
*id = (ID *)ptr->id.data;
*type = DEG_NODE_TYPE_GEOMETRY;
return true;