[Bf-blender-cvs] [463eef36d3b] master: Fix T68753: GPencil tooltip typo

Antonio Vazquez noreply at git.blender.org
Sat Aug 17 11:04:11 CEST 2019


Commit: 463eef36d3b9e3b4673462cf6df8945fe5e81f9e
Author: Antonio Vazquez
Date:   Sat Aug 17 11:04:03 2019 +0200
Branches: master
https://developer.blender.org/rB463eef36d3b9e3b4673462cf6df8945fe5e81f9e

Fix T68753: GPencil tooltip typo

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

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 e8281819b03..ea343406c81 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -697,7 +697,7 @@ static void rna_def_modifier_gpencilsimplify(BlenderRNA *brna)
   prop = RNA_def_property(srna, "distance", PROP_FLOAT, PROP_NONE);
   RNA_def_property_float_sdna(prop, NULL, "distance");
   RNA_def_property_range(prop, 0, 100.0f);
-  RNA_def_property_ui_text(prop, "Distance", "Distance between vertex");
+  RNA_def_property_ui_text(prop, "Distance", "Distance between points");
   RNA_def_property_update(prop, 0, "rna_GpencilModifier_update");
 }



More information about the Bf-blender-cvs mailing list