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:
authorCampbell Barton <campbell@blender.org>2022-09-29 04:59:41 +0300
committerCampbell Barton <campbell@blender.org>2022-09-29 06:32:16 +0300
commitf96020fb9af08a81391f8bb9961e394a0b0337eb (patch)
tree1ded5a58b5bb51582378551b1db2a822c9a46752
parent91db47e914e73f619b0b6f70a8c04e77794bab5f (diff)
Cleanup: remove '.' from the end of descriptions
Quiet warnings at startup & build time.
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_ops.c2
-rw-r--r--source/blender/makesrna/intern/rna_brush.c2
2 files changed, 2 insertions, 2 deletions
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");