[Bf-blender-cvs] [567ae90374d] blender-v3.4-release: Sculpt: fix T102584: Boundary propegation for automasking not working

Joseph Eagar noreply at git.blender.org
Sun Nov 20 16:18:31 CET 2022


Commit: 567ae90374dbe207b0cdf6b0fa1438e8bcf0a28d
Author: Joseph Eagar
Date:   Sun Nov 20 07:18:04 2022 -0800
Branches: blender-v3.4-release
https://developer.blender.org/rB567ae90374dbe207b0cdf6b0fa1438e8bcf0a28d

Sculpt: fix T102584: Boundary propegation for automasking not working

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

M	source/blender/editors/sculpt_paint/sculpt_automasking.cc

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

diff --git a/source/blender/editors/sculpt_paint/sculpt_automasking.cc b/source/blender/editors/sculpt_paint/sculpt_automasking.cc
index 505440c9272..4117a2b5622 100644
--- a/source/blender/editors/sculpt_paint/sculpt_automasking.cc
+++ b/source/blender/editors/sculpt_paint/sculpt_automasking.cc
@@ -894,8 +894,7 @@ AutomaskingCache *SCULPT_automasking_cache_init(Sculpt *sd, Brush *brush, Object
    * from zero which other modes can subtract from.  If none of them are
    * enabled initialize to 1.
    */
-  if (!(mode & (BRUSH_AUTOMASKING_BOUNDARY_EDGES | BRUSH_AUTOMASKING_TOPOLOGY |
-                BRUSH_AUTOMASKING_BOUNDARY_FACE_SETS))) {
+  if (!(mode & BRUSH_AUTOMASKING_TOPOLOGY)) {
     initial_value = 1.0f;
   }
   else {



More information about the Bf-blender-cvs mailing list