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:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-12-13 17:07:42 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-12-13 17:07:42 +0300
commitec3d25803ec544c3b6cccee45f8e943ee46f28a6 (patch)
treeb0a9ae84d23e3f014e4ca9a26db5f0cb22cfd7b4 /source/blender/blenkernel/intern/mask.c
parent3d6cc77cbd8fc1dbd92d186486d038857e6eda62 (diff)
parent81f135677be419a505a38f5a23354690a75b678b (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/blenkernel/intern/mask.c')
-rw-r--r--source/blender/blenkernel/intern/mask.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/mask.c b/source/blender/blenkernel/intern/mask.c
index eaa2f89ab82..92dee5b55d4 100644
--- a/source/blender/blenkernel/intern/mask.c
+++ b/source/blender/blenkernel/intern/mask.c
@@ -1464,7 +1464,7 @@ void BKE_mask_update_scene(Main *bmain, Scene *scene)
Mask *mask;
for (mask = bmain->mask.first; mask; mask = mask->id.next) {
- if (mask->id.tag & (LIB_TAG_ID_RECALC | LIB_TAG_ID_RECALC_DATA)) {
+ if (mask->id.tag & LIB_TAG_ID_RECALC_ALL) {
bool do_new_frame = (mask->id.tag & LIB_TAG_ID_RECALC_DATA) != 0;
BKE_mask_evaluate_all_masks(bmain, CFRA, do_new_frame);
}