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:
authorPablo Vazquez <pablo@blender.org>2020-04-01 04:52:58 +0300
committerPablo Vazquez <pablo@blender.org>2020-04-01 04:52:58 +0300
commitb7868c0b890c4c06100b771548ba16a99d4e6eb9 (patch)
tree33c86de992fc218f0f67fcc24920944e528f0d19 /source/blender/makesrna/intern/rna_gpencil.c
parent6a1f0c1eaafee3b96563b84e48547ec6ec655fc3 (diff)
Grease Pencil: Fix typo in labels and comments.
Hardeness -> Hardness Only changed the labels/tooltips, will leave the internal change to @antoniov.
Diffstat (limited to 'source/blender/makesrna/intern/rna_gpencil.c')
-rw-r--r--source/blender/makesrna/intern/rna_gpencil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_gpencil.c b/source/blender/makesrna/intern/rna_gpencil.c
index 4afa467d2e3..e841813beca 100644
--- a/source/blender/makesrna/intern/rna_gpencil.c
+++ b/source/blender/makesrna/intern/rna_gpencil.c
@@ -1203,7 +1203,7 @@ static void rna_def_gpencil_stroke(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "hardeness");
RNA_def_property_range(prop, 0.001f, 1.0f);
RNA_def_property_float_default(prop, 1.0f);
- RNA_def_property_ui_text(prop, "Hardeness", "Amount of gradient along section of stroke");
+ RNA_def_property_ui_text(prop, "Hardness", "Amount of gradient along section of stroke");
RNA_def_parameter_clear_flags(prop, PROP_ANIMATABLE, 0);
RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");