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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-09-19 18:16:02 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-09-19 18:16:02 +0400
commitd25ab89ac08db7598a62614b537ae4679f26a86d (patch)
tree8c23bcd45a9a923989a4a7dcb1e9741d80d08a8c /source/blender/makesrna/intern/rna_armature.c
parent645ca520a313a9881ee77556fc85820e74f83887 (diff)
RNA: for last commit, fix paths_location and paths_type enums,
these had wrong DNA variable name already before this change.
Diffstat (limited to 'source/blender/makesrna/intern/rna_armature.c')
-rw-r--r--source/blender/makesrna/intern/rna_armature.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_armature.c b/source/blender/makesrna/intern/rna_armature.c
index c271b34b6d4..aa422f85d7b 100644
--- a/source/blender/makesrna/intern/rna_armature.c
+++ b/source/blender/makesrna/intern/rna_armature.c
@@ -577,13 +577,13 @@ static void rna_def_armature(BlenderRNA *brna)
RNA_def_property_update(prop, 0, "rna_Armature_redraw_data");
prop= RNA_def_property(srna, "paths_type", PROP_ENUM, PROP_NONE);
- RNA_def_property_enum_bitflag_sdna(prop, NULL, "flag");
+ RNA_def_property_enum_bitflag_sdna(prop, NULL, "pathflag");
RNA_def_property_enum_items(prop, prop_paths_type_items);
RNA_def_property_ui_text(prop, "Paths Type", "Mapping type to use for this image in the game engine.");
RNA_def_property_update(prop, 0, "rna_Armature_redraw_data");
prop= RNA_def_property(srna, "paths_location", PROP_ENUM, PROP_NONE);
- RNA_def_property_enum_bitflag_sdna(prop, NULL, "flag");
+ RNA_def_property_enum_bitflag_sdna(prop, NULL, "pathflag");
RNA_def_property_enum_items(prop, prop_paths_location_items);
RNA_def_property_ui_text(prop, "Paths Location", "When calculating Bone Paths, use Head or Tips");
RNA_def_property_update(prop, 0, "rna_Armature_redraw_data");