Transform Snap: Fix dependency cycle between transformed object and object with modifiers

This commit is contained in:
Germano Cavalcante 2019-07-05 12:13:08 -03:00
parent 18e619ac69
commit 7b93aebff9
1 changed files with 1 additions and 1 deletions

View File

@ -6451,7 +6451,7 @@ static void set_trans_object_base_deps_flag_cb(ID *id,
if (GS(id->name) != ID_OB) {
return;
}
if (component != DEG_OB_COMP_TRANSFORM) {
if (!ELEM(component, DEG_OB_COMP_TRANSFORM, DEG_OB_COMP_GEOMETRY)) {
return;
}
id->tag |= LIB_TAG_DOIT;