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>2019-01-23 15:04:32 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-01-23 15:04:32 +0300
commit44e9fe024bba014aa49b3a106fe89aa0b6e610cd (patch)
tree24f571e8b423ac3fc035a655068f9ff80341fc20 /source/blender/blenkernel/intern/mask.c
parente6ad4ec3fc7db82062e93d49395275ac326f2a37 (diff)
Fix T56877: Enabling mask Motion Blur overrides the Feather Falloff
Compositor makes a copy of mask before sampling the mask on different time steps. The copy of layers did not copy falloff Settings.
Diffstat (limited to 'source/blender/blenkernel/intern/mask.c')
-rw-r--r--source/blender/blenkernel/intern/mask.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/mask.c b/source/blender/blenkernel/intern/mask.c
index 3f6eaffa552..f219c225d9d 100644
--- a/source/blender/blenkernel/intern/mask.c
+++ b/source/blender/blenkernel/intern/mask.c
@@ -207,6 +207,7 @@ MaskLayer *BKE_mask_layer_copy(const MaskLayer *masklay)
masklay_new->blend = masklay->blend;
masklay_new->blend_flag = masklay->blend_flag;
masklay_new->flag = masklay->flag;
+ masklay_new->falloff = masklay->falloff;
masklay_new->restrictflag = masklay->restrictflag;
for (spline = masklay->splines.first; spline; spline = spline->next) {