From a8ce1a15860297e530cb71529066758eca8fa02b Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 15 Jul 2009 22:51:47 +0000 Subject: 2.5 - Tweak to Action Constraint 'Transform Channel' order of options --- source/blender/makesrna/intern/rna_constraint.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/blender/makesrna/intern/rna_constraint.c') diff --git a/source/blender/makesrna/intern/rna_constraint.c b/source/blender/makesrna/intern/rna_constraint.c index 0e3dd799612..d84d6f159d8 100644 --- a/source/blender/makesrna/intern/rna_constraint.c +++ b/source/blender/makesrna/intern/rna_constraint.c @@ -716,15 +716,15 @@ static void rna_def_constraint_action(BlenderRNA *brna) PropertyRNA *prop; static EnumPropertyItem transform_channel_items[] = { - {00, "ROTATION_X", 0, "Rotation X", ""}, - {01, "ROTATION_Y", 0, "Rotation Y", ""}, - {02, "ROTATION_Z", 0, "Rotation Z", ""}, - {10, "SIZE_X", 0, "Scale X", ""}, - {11, "SIZE_Y", 0, "Scale Y", ""}, - {12, "SIZE_Z", 0, "Scale Z", ""}, {20, "LOCATION_X", 0, "Location X", ""}, {21, "LOCATION_Y", 0, "Location Y", ""}, {22, "LOCATION_Z", 0, "Location Z", ""}, + {00, "ROTATION_X", 0, "Rotation X", ""}, + {01, "ROTATION_Y", 0, "Rotation Y", ""}, + {02, "ROTATION_Z", 0, "Rotation Z", ""}, + {10, "SCALE_X", 0, "Scale X", ""}, + {11, "SCALE_Y", 0, "Scale Y", ""}, + {12, "SCALE_Z", 0, "Scale Z", ""}, {0, NULL, 0, NULL, NULL}}; srna= RNA_def_struct(brna, "ActionConstraint", "Constraint"); -- cgit v1.2.3