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-03-30 03:40:00 +0300
committerCampbell Barton <campbell@blender.org>2022-03-30 03:41:34 +0300
commitbcb9379c6dfadbc7883f6f93bcca6a8b2a113419 (patch)
treed6f53ebcace472fa8cd13e825fe6ea2c50002683 /source/blender/makesrna
parent9ae98f305a4c2ef226ad7319135aae0a7e811ed4 (diff)
Cleanup: quiet warning for description ending with a full stop
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_gpencil_modifier.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_gpencil_modifier.c b/source/blender/makesrna/intern/rna_gpencil_modifier.c
index af75979a316..b09d8a4738d 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -2246,8 +2246,7 @@ static void rna_def_modifier_gpencilbuild(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_fading", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_BUILD_USE_FADING);
- RNA_def_property_ui_text(
- prop, "Use Fading", "Fade out strokes instead of directly cutting off.");
+ RNA_def_property_ui_text(prop, "Use Fading", "Fade out strokes instead of directly cutting off");
RNA_def_property_update(prop, 0, "rna_GpencilModifier_update");
prop = RNA_def_property(srna, "fade_factor", PROP_FLOAT, PROP_FACTOR);