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:
authorNathan Vegdahl <cessen@cessen.com>2012-01-31 08:23:49 +0400
committerNathan Vegdahl <cessen@cessen.com>2012-01-31 08:23:49 +0400
commit67dca2275e0dbd399b72f13c23932d6c663aed75 (patch)
tree11ccd9f61f8eeea58d2d6c15bfdaf57695331782 /source/blender/makesrna/intern/rna_constraint.c
parent528e001121ae89e3f22d783857abf3ed2072b3c4 (diff)
Action constraint transform channel was listing X Scale as Z Scale,
resulting in two Z Scale listings in the menu. Fixed.
Diffstat (limited to 'source/blender/makesrna/intern/rna_constraint.c')
-rw-r--r--source/blender/makesrna/intern/rna_constraint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_constraint.c b/source/blender/makesrna/intern/rna_constraint.c
index e12f411f81f..9995f4f16e9 100644
--- a/source/blender/makesrna/intern/rna_constraint.c
+++ b/source/blender/makesrna/intern/rna_constraint.c
@@ -1032,7 +1032,7 @@ static void rna_def_constraint_action(BlenderRNA *brna)
{00, "ROTATION_X", 0, "X Rotation", ""},
{01, "ROTATION_Y", 0, "Y Rotation", ""},
{02, "ROTATION_Z", 0, "Z Rotation", ""},
- {10, "SCALE_X", 0, "Z Scale", ""},
+ {10, "SCALE_X", 0, "X Scale", ""},
{11, "SCALE_Y", 0, "Y Scale", ""},
{12, "SCALE_Z", 0, "Z Scale", ""},
{0, NULL, 0, NULL, NULL}};