From 4710af81a4003cf1c19f7fc16c08a53146bf3fba Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 13 Aug 2018 11:45:55 +0200 Subject: [PATCH] Cleanup: Description should not end with a fullstop --- source/blender/makesrna/intern/rna_modifier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c index f0898064860..fc0144f3f7b 100644 --- a/source/blender/makesrna/intern/rna_modifier.c +++ b/source/blender/makesrna/intern/rna_modifier.c @@ -4958,7 +4958,7 @@ static void rna_def_modifier_weightednormal(BlenderRNA *brna) RNA_def_property_boolean_sdna(prop, NULL, "flag", MOD_WEIGHTEDNORMAL_KEEP_SHARP); RNA_def_property_ui_text(prop, "Keep Sharp", "Keep sharp edges as computed for default split normals, " - "instead of setting a single weighted normal for each vertex."); + "instead of setting a single weighted normal for each vertex"); RNA_def_property_update(prop, 0, "rna_Modifier_update"); prop = RNA_def_property(srna, "vertex_group", PROP_STRING, PROP_NONE);