Cleanup: quiet warning for description ending with a full stop

This commit is contained in:
Campbell Barton 2022-03-30 11:40:00 +11:00
parent 9ae98f305a
commit bcb9379c6d
1 changed files with 1 additions and 2 deletions

View File

@ -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);