From f96020fb9af08a81391f8bb9961e394a0b0337eb Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 29 Sep 2022 11:59:41 +1000 Subject: Cleanup: remove '.' from the end of descriptions Quiet warnings at startup & build time. --- source/blender/editors/sculpt_paint/sculpt_ops.c | 2 +- source/blender/makesrna/intern/rna_brush.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source') 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"); -- cgit v1.2.3