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
diff options
context:
space:
mode:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2016-10-28 19:01:42 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2016-10-28 19:08:31 +0300
commit65c481e1457b7daf1ef3d1c41346070d345c1dcd (patch)
tree559205e3e7817022fa037fe08d03dc63626a6233 /source/blender/blenkernel/intern/depsgraph.c
parent194a33ff001bb240d15268caf6ec0a4738b30225 (diff)
CacheFile: fix missing depsgraph update.
Diffstat (limited to 'source/blender/blenkernel/intern/depsgraph.c')
-rw-r--r--source/blender/blenkernel/intern/depsgraph.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/depsgraph.c b/source/blender/blenkernel/intern/depsgraph.c
index 5f8332dcf0c..02ae123a71e 100644
--- a/source/blender/blenkernel/intern/depsgraph.c
+++ b/source/blender/blenkernel/intern/depsgraph.c
@@ -2997,7 +2997,7 @@ void DAG_id_tag_update_ex(Main *bmain, ID *id, short flag)
MeshSeqCacheModifierData *mcmd = (MeshSeqCacheModifierData *)md;
if (mcmd->cache_file && (&mcmd->cache_file->id == id)) {
- ob->recalc |= OB_RECALC_DATA;
+ ob->recalc |= OB_RECALC_ALL;
continue;
}
}
@@ -3010,7 +3010,7 @@ void DAG_id_tag_update_ex(Main *bmain, ID *id, short flag)
bTransformCacheConstraint *data = con->data;
if (data->cache_file && (&data->cache_file->id == id)) {
- ob->recalc |= OB_RECALC_DATA;
+ ob->recalc |= OB_RECALC_ALL;
break;
}
}