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:
authorAntonio Vazquez <blendergit@gmail.com>2019-08-17 12:04:03 +0300
committerAntonio Vazquez <blendergit@gmail.com>2019-08-17 12:04:03 +0300
commit463eef36d3b9e3b4673462cf6df8945fe5e81f9e (patch)
tree1b2d2bc347d2e825087df1aca059884f83ba8080 /source/blender/makesrna/intern/rna_gpencil_modifier.c
parente8ffe25eb11183bc8a6c1c53e20147b22ed17d2a (diff)
Fix T68753: GPencil tooltip typo
Diffstat (limited to 'source/blender/makesrna/intern/rna_gpencil_modifier.c')
-rw-r--r--source/blender/makesrna/intern/rna_gpencil_modifier.c2
1 files changed, 1 insertions, 1 deletions
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");
}