Commit: bfa8fcc542bffe68249e733dd48d23445733f931
Author: Sergey Sharybin
Date:   Fri Jan 25 11:22:22 2019 +0100
Branches: master
https://developer.blender.org/rBbfa8fcc542bffe68249e733dd48d23445733f931

Fix T60839: Deleting bevel object for curve will not update

Was missing conversion of ID_RECALC_GEOEMTRY to curve's operation.

===================================================================

M       source/blender/depsgraph/intern/depsgraph_tag.cc

===================================================================

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;

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to