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.
This commit is contained in:
Sergey Sharybin 2019-01-23 13:04:32 +01:00
parent e6ad4ec3fc
commit 44e9fe024b
Notes: blender-bot 2023-02-14 05:41:57 +01:00
Referenced by issue #56877, Masking: Enabling Motion Blur overrides the Feather Falloff
1 changed files with 1 additions and 0 deletions

View File

@ -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) {