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:
authorCampbell Barton <ideasman42@gmail.com>2012-06-05 13:37:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-05 13:37:44 +0400
commitae8103240d2cf66d2d6aea5bddbc0074700df122 (patch)
tree702027ae601dc9426aa9199c8f90945be3d58887 /source/blender/editors/mask/mask_add.c
parent2221b994bc67bd93d7eb97491d8dacfe869c1e9c (diff)
mask editing
- clear feather weights (alt+s) - fix for glitch where placing the feather would jitter.
Diffstat (limited to 'source/blender/editors/mask/mask_add.c')
-rw-r--r--source/blender/editors/mask/mask_add.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mask/mask_add.c b/source/blender/editors/mask/mask_add.c
index cdfdde4ef31..82f82862577 100644
--- a/source/blender/editors/mask/mask_add.c
+++ b/source/blender/editors/mask/mask_add.c
@@ -150,7 +150,7 @@ static int find_nearest_diff_point(bContext *C, Mask *mask, const float normal_c
*point_r = point;
if (u_r) {
- u = BKE_mask_spline_project_co(point_spline, point, u, normal_co);
+ u = BKE_mask_spline_project_co(point_spline, point, u, normal_co, MASK_PROJ_ANY);
*u_r = u;
}