[Bf-blender-cvs] [0340f330966] greasepencil-object: GPencil: Fix typo (rna tooltip cannot end with point)

Antonio Vazquez noreply at git.blender.org
Sat Aug 24 18:56:32 CEST 2019


Commit: 0340f3309664fcd9f8d1a4fa32348363a23b025b
Author: Antonio Vazquez
Date:   Sat Aug 24 18:56:10 2019 +0200
Branches: greasepencil-object
https://developer.blender.org/rB0340f3309664fcd9f8d1a4fa32348363a23b025b

GPencil: Fix typo (rna tooltip cannot end with point)

===================================================================

M	source/blender/makesrna/intern/rna_gpencil_modifier.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_gpencil_modifier.c b/source/blender/makesrna/intern/rna_gpencil_modifier.c
index 4a0cf4d7ce2..b8563207487 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -1938,7 +1938,7 @@ static void rna_def_modifier_gpencilmultiply(BlenderRNA *brna)
 
   prop = RNA_def_property(srna, "distance", PROP_FLOAT, PROP_NONE);
   RNA_def_property_range(prop, 0, M_PI);
-  RNA_def_property_ui_text(prop, "Distance", "Distance of duplications.");
+  RNA_def_property_ui_text(prop, "Distance", "Distance of duplications");
   RNA_def_property_update(prop, 0, "rna_GpencilModifier_update");
 
   prop = RNA_def_property(srna, "offset", PROP_FLOAT, PROP_NONE);



More information about the Bf-blender-cvs mailing list