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
path: root/source
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-01-25 13:22:22 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-01-25 13:22:22 +0300
commitbfa8fcc542bffe68249e733dd48d23445733f931 (patch)
treeb465707c7a4b3c98f5380f1ea7af46a4a05c3cd6 /source
parentd87e7af1ec2021e177de60a754c20aa2855dd660 (diff)
Fix T60839: Deleting bevel object for curve will not update
Was missing conversion of ID_RECALC_GEOEMTRY to curve's operation.
Diffstat (limited to 'source')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_tag.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc b/source/blender/depsgraph/intern/depsgraph_tag.cc
index 27e1a5fb7dd..249740c2c2a 100644
--- a/source/blender/depsgraph/intern/depsgraph_tag.cc
+++ b/source/blender/depsgraph/intern/depsgraph_tag.cc
@@ -584,6 +584,9 @@ eDepsNode_Type deg_geometry_tag_to_component(const ID *id)
break;
}
case ID_ME:
+ case ID_CU:
+ case ID_LT:
+ case ID_MB:
return DEG_NODE_TYPE_GEOMETRY;
case ID_PA: /* Particles */
return DEG_NODE_TYPE_UNDEFINED;