[Bf-blender-cvs] [4c0cca78eb4] master: Rename Edge Automasking to Mesh Boundary Automasking

Pablo Dobarro noreply at git.blender.org
Fri Mar 27 18:06:23 CET 2020


Commit: 4c0cca78eb43df1841d5ef9e084e5d41aae2217b
Author: Pablo Dobarro
Date:   Fri Mar 27 18:04:52 2020 +0100
Branches: master
https://developer.blender.org/rB4c0cca78eb43df1841d5ef9e084e5d41aae2217b

Rename Edge Automasking to Mesh Boundary Automasking

This makes more clear what this automasking operation does and helps to differenciate it from the future face sets boundary automasking.

Reviewed By: jbakker

Differential Revision: https://developer.blender.org/D7185

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

M	source/blender/makesrna/intern/rna_brush.c

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

diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c
index 30b4735e549..2a777c53cab 100644
--- a/source/blender/makesrna/intern/rna_brush.c
+++ b/source/blender/makesrna/intern/rna_brush.c
@@ -2364,7 +2364,8 @@ static void rna_def_brush(BlenderRNA *brna)
 
   prop = RNA_def_property(srna, "use_automasking_boundary_edges", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "automasking_flags", BRUSH_AUTOMASKING_BOUNDARY_EDGES);
-  RNA_def_property_ui_text(prop, "Edges Auto-masking", "Do not affect non manifold boundary edges");
+  RNA_def_property_ui_text(
+      prop, "Mesh Boundary Auto-masking", "Do not affect non manifold boundary edges");
   RNA_def_property_update(prop, 0, "rna_Brush_update");
 
   prop = RNA_def_property(srna, "use_scene_spacing", PROP_ENUM, PROP_NONE);



More information about the Bf-blender-cvs mailing list