From ad3838e1e0c6ca1f4e8d57ea0986b1ceb21bb53c Mon Sep 17 00:00:00 2001 From: Pablo Dobarro Date: Tue, 4 Aug 2020 16:52:31 +0200 Subject: [PATCH] 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 --- source/blender/makesrna/intern/rna_brush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}, };