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 Dobarro <pablodp606@gmail.com>2020-08-04 17:52:31 +0300
committerPablo Dobarro <pablodp606@gmail.com>2020-08-06 00:00:38 +0300
commitad3838e1e0c6ca1f4e8d57ea0986b1ceb21bb53c (patch)
tree047904fc9395bb1c558764e4af1f704b602ffccc /source/blender/makesrna/intern/rna_brush.c
parent9ea77f5232c7a07b529c9f0d6417112a20d441aa (diff)
Fix Squash and Stretch naming in the Pose Brush deform mode
Previusly it was using the / character, which implies that there is one deformation mode and and invert deformation mode like in the other two deformation, but squash and stretch is only one deformation mode and does not have an invert mode. Reviewed By: sergey Differential Revision: https://developer.blender.org/D8463
Diffstat (limited to 'source/blender/makesrna/intern/rna_brush.c')
-rw-r--r--source/blender/makesrna/intern/rna_brush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c
index 7772912e261..87a85215208 100644
--- a/source/blender/makesrna/intern/rna_brush.c
+++ b/source/blender/makesrna/intern/rna_brush.c
@@ -2000,7 +2000,7 @@ static void rna_def_brush(BlenderRNA *brna)
static const EnumPropertyItem brush_pose_deform_type_items[] = {
{BRUSH_POSE_DEFORM_ROTATE_TWIST, "ROTATE_TWIST", 0, "Rotate/Twist", ""},
{BRUSH_POSE_DEFORM_SCALE_TRASLATE, "SCALE_TRANSLATE", 0, "Scale/Translate", ""},
- {BRUSH_POSE_DEFORM_SQUASH_STRETCH, "SQUASH_STRETCH", 0, "Squash/Stretch", ""},
+ {BRUSH_POSE_DEFORM_SQUASH_STRETCH, "SQUASH_STRETCH", 0, "Squash & Stretch", ""},
{0, NULL, 0, NULL, NULL},
};