[Bf-blender-cvs] [db3bf367708] master: Sculpt: Fix T102253: Missing call to SCULPT_automasking_node_update

Joseph Eagar noreply at git.blender.org
Sat Nov 5 19:58:15 CET 2022


Commit: db3bf3677085d64cca04f01e2004f556c75a4400
Author: Joseph Eagar
Date:   Sat Nov 5 11:57:39 2022 -0700
Branches: master
https://developer.blender.org/rBdb3bf3677085d64cca04f01e2004f556c75a4400

Sculpt: Fix T102253: Missing call to SCULPT_automasking_node_update

===================================================================

M	source/blender/editors/sculpt_paint/sculpt_brush_types.c

===================================================================

diff --git a/source/blender/editors/sculpt_paint/sculpt_brush_types.c b/source/blender/editors/sculpt_paint/sculpt_brush_types.c
index 92541d10a59..666fa884e03 100644
--- a/source/blender/editors/sculpt_paint/sculpt_brush_types.c
+++ b/source/blender/editors/sculpt_paint/sculpt_brush_types.c
@@ -1441,6 +1441,9 @@ static void do_rotate_brush_task_cb_ex(void *__restrict userdata,
     if (!sculpt_brush_test_sq_fn(&test, orig_data.co)) {
       continue;
     }
+
+    SCULPT_automasking_node_update(ss, &automask_data, &vd);
+
     float vec[3], rot[3][3];
     const float fade = bstrength * SCULPT_brush_strength_factor(ss,
                                                                 brush,



More information about the Bf-blender-cvs mailing list