From 0373d1b09fc9db2c237a507dc6ef649c5d2b8703 Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Fri, 22 Jan 2021 11:25:32 +0100 Subject: GPencil: Fix unreported Vertex Paint masking error The masking was not working as expected and allowed to paint non selected strokes. --- source/blender/editors/gpencil/gpencil_vertex_paint.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'source/blender/editors/gpencil') diff --git a/source/blender/editors/gpencil/gpencil_vertex_paint.c b/source/blender/editors/gpencil/gpencil_vertex_paint.c index 62ddfaab012..e2c81d53fba 100644 --- a/source/blender/editors/gpencil/gpencil_vertex_paint.c +++ b/source/blender/editors/gpencil/gpencil_vertex_paint.c @@ -845,6 +845,13 @@ static bool gpencil_vertexpaint_select_stroke(tGP_BrushVertexpaintData *gso, bool saved = false; + /* Check stroke masking. */ + if (GPENCIL_ANY_VERTEX_MASK(gso->mask)) { + if ((gps->flag & GP_STROKE_SELECT) == 0) { + return false; + } + } + /* Check if the stroke collide with brush. */ if (!ED_gpencil_stroke_check_collision(gsc, gps, gso->mval, radius, diff_mat)) { return false; -- cgit v1.2.3