From 3be7d74cba7feee09a0684bdeac7c6336e72814a Mon Sep 17 00:00:00 2001 From: Germano Cavalcante Date: Thu, 19 Mar 2020 13:18:17 -0300 Subject: Fix T70126: Can't snap between objects with Rigid Body `DEG_FOREACH_COMPONENT_IGNORE_TRANSFORM_SOLVERS` was `0` --- source/blender/depsgraph/DEG_depsgraph_query.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/depsgraph/DEG_depsgraph_query.h') diff --git a/source/blender/depsgraph/DEG_depsgraph_query.h b/source/blender/depsgraph/DEG_depsgraph_query.h index c8ddffa57c7..26b46376a0a 100644 --- a/source/blender/depsgraph/DEG_depsgraph_query.h +++ b/source/blender/depsgraph/DEG_depsgraph_query.h @@ -247,7 +247,7 @@ enum { * object 1 transform before solver ---> solver ------> object 1 final transform * object 2 transform before solver -----^ \------> object 2 final transform */ - DEG_FOREACH_COMPONENT_IGNORE_TRANSFORM_SOLVERS, + DEG_FOREACH_COMPONENT_IGNORE_TRANSFORM_SOLVERS = (1 << 0), }; void DEG_foreach_dependent_ID_component(const Depsgraph *depsgraph, const ID *id, -- cgit v1.2.3