Depsgraph: Fix changes in tracking invalidating movie cache

Added special exception in legacy tag with 0 flag.
This commit is contained in:
Sergey Sharybin
2019-07-28 15:08:41 +02:00
parent 11814080a6
commit 1f47916664

View File

@@ -452,7 +452,7 @@ const char *update_source_as_string(eUpdateSource source)
int deg_recalc_flags_for_legacy_zero()
{
return ID_RECALC_ALL & ~(ID_RECALC_PSYS_ALL | ID_RECALC_ANIMATION);
return ID_RECALC_ALL & ~(ID_RECALC_PSYS_ALL | ID_RECALC_ANIMATION | ID_RECALC_SOURCE);
}
int deg_recalc_flags_effective(Depsgraph *graph, int flags)