From 44e9fe024bba014aa49b3a106fe89aa0b6e610cd Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 23 Jan 2019 13:04:32 +0100 Subject: 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. --- source/blender/blenkernel/intern/mask.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/blenkernel/intern/mask.c') 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) { -- cgit v1.2.3