[Bf-blender-cvs] [f96020fb9af] master: Cleanup: remove '.' from the end of descriptions

Campbell Barton noreply at git.blender.org
Thu Sep 29 05:32:59 CEST 2022


Commit: f96020fb9af08a81391f8bb9961e394a0b0337eb
Author: Campbell Barton
Date:   Thu Sep 29 11:59:41 2022 +1000
Branches: master
https://developer.blender.org/rBf96020fb9af08a81391f8bb9961e394a0b0337eb

Cleanup: remove '.' from the end of descriptions

Quiet warnings at startup & build time.

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

M	source/blender/editors/sculpt_paint/sculpt_ops.c
M	source/blender/makesrna/intern/rna_brush.c

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

diff --git a/source/blender/editors/sculpt_paint/sculpt_ops.c b/source/blender/editors/sculpt_paint/sculpt_ops.c
index 3c8539a9b75..e56d967808f 100644
--- a/source/blender/editors/sculpt_paint/sculpt_ops.c
+++ b/source/blender/editors/sculpt_paint/sculpt_ops.c
@@ -1239,7 +1239,7 @@ static void SCULPT_OT_mask_from_cavity(wmOperatorType *ot)
                   "use_automask_settings",
                   false,
                   "Use Automask Settings",
-                  "Use default settings from Options panel in sculpt mode.");
+                  "Use default settings from Options panel in sculpt mode");
 
   RNA_def_float(ot->srna,
                 "factor",
diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c
index 5962e6cd81d..3f4542a0f64 100644
--- a/source/blender/makesrna/intern/rna_brush.c
+++ b/source/blender/makesrna/intern/rna_brush.c
@@ -3257,7 +3257,7 @@ static void rna_def_brush(BlenderRNA *brna)
 
   prop = RNA_def_property(srna, "automasking_cavity_blur_steps", PROP_INT, PROP_NONE);
   RNA_def_property_int_sdna(prop, NULL, "automasking_cavity_blur_steps");
-  RNA_def_property_ui_text(prop, "Blur Steps", "The number of times the cavity mask is blurred.");
+  RNA_def_property_ui_text(prop, "Blur Steps", "The number of times the cavity mask is blurred");
   RNA_def_property_range(prop, 0.0f, 25.0f);
   RNA_def_property_override_flag(prop, PROPOVERRIDE_OVERRIDABLE_LIBRARY);
   RNA_def_property_update(prop, 0, "rna_Brush_update");



More information about the Bf-blender-cvs mailing list