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/gpencil_modifiers/intern
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/gpencil_modifiers/intern')
-rw-r--r--source/blender/gpencil_modifiers/intern/MOD_gpencilopacity.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpencil_modifiers/intern/MOD_gpencilopacity.c b/source/blender/gpencil_modifiers/intern/MOD_gpencilopacity.c
index 93f3776827b..a1f1519d11f 100644
--- a/source/blender/gpencil_modifiers/intern/MOD_gpencilopacity.c
+++ b/source/blender/gpencil_modifiers/intern/MOD_gpencilopacity.c
@@ -105,7 +105,7 @@ static void deformStroke(GpencilModifierData *md,
return;
}
- /* Hardeness (at stroke level). */
+ /* Hardness (at stroke level). */
if (mmd->modify_color == GP_MODIFY_COLOR_HARDENESS) {
gps->hardeness *= mmd->hardeness;
CLAMP(gps->hardeness, 0.0f, 1.0f);