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
This commit is contained in:
Pablo Dobarro 2020-03-27 18:04:52 +01:00
parent 015c084bda
commit 4c0cca78eb
1 changed files with 2 additions and 1 deletions

View File

@ -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);