Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikhil Shringarpurey <Nikhil.Net>2022-03-02 21:05:15 +0300
committerHarley Acheson <harley.acheson@gmail.com>2022-03-02 21:05:15 +0300
commit721b705499fee2b999f74c7928892c9a9fce5bc2 (patch)
tree6acb8d49e5b97651a792e5918bafcc58f74cd114 /source/blender/makesrna/intern/rna_brush.c
parentca0b72852961571d0099a7274fb34291494f3b45 (diff)
UI: Comments Misspellings of Vertex/Vertices
Correct misspellings in code comments of "vertex" and "vertices". See D13932 for more details. Differential Revision: https://developer.blender.org/D13932 Reviewed by Harley Acheson
Diffstat (limited to 'source/blender/makesrna/intern/rna_brush.c')
-rw-r--r--source/blender/makesrna/intern/rna_brush.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c
index 4ffb3ffbe53..e282b474d8d 100644
--- a/source/blender/makesrna/intern/rna_brush.c
+++ b/source/blender/makesrna/intern/rna_brush.c
@@ -2705,7 +2705,7 @@ static void rna_def_brush(BlenderRNA *brna)
RNA_def_property_float_default(prop, 0);
RNA_def_property_range(prop, 0.0f, 1.0f);
RNA_def_property_ui_text(
- prop, "Normal Weight", "How much grab will pull vertexes out of surface during a grab");
+ prop, "Normal Weight", "How much grab will pull vertices out of surface during a grab");
RNA_def_property_update(prop, 0, "rna_Brush_update");
prop = RNA_def_property(srna, "elastic_deform_volume_preservation", PROP_FLOAT, PROP_NONE);
@@ -3181,7 +3181,7 @@ static void rna_def_brush(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_frontface", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", BRUSH_FRONTFACE);
RNA_def_property_ui_text(
- prop, "Use Front-Face", "Brush only affects vertexes that face the viewer");
+ prop, "Use Front-Face", "Brush only affects vertices that face the viewer");
RNA_def_property_update(prop, 0, "rna_Brush_update");
prop = RNA_def_property(srna, "use_frontface_falloff", PROP_BOOLEAN, PROP_NONE);