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>2008-12-04 03:07:47 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-12-04 03:07:47 +0300
commit8fc5d6e7de5d2b16a664fd4d31e788a98361b607 (patch)
treefe778b26539360484ebc856062ff9bac6e90b553 /source/blender/makesrna/intern/rna_mesh.c
parent853f2b0647ac0f969f545b800901f29f5a22dbc4 (diff)
RNA
* Remove some unnecessary defining of struct types for pointers. * Review of DNA_key_types.h and added Key for Mesh and Curve.
Diffstat (limited to 'source/blender/makesrna/intern/rna_mesh.c')
-rw-r--r--source/blender/makesrna/intern/rna_mesh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c
index e21d2a57ff3..cb17ec1a1ef 100644
--- a/source/blender/makesrna/intern/rna_mesh.c
+++ b/source/blender/makesrna/intern/rna_mesh.c
@@ -958,8 +958,8 @@ static void rna_def_mesh(BlenderRNA *brna)
RNA_def_property_pointer_sdna(prop, NULL, "mr");
RNA_def_property_ui_text(prop, "Multires", "");
- /*prop= RNA_def_property(srna, "key", PROP_POINTER, PROP_NONE);
- RNA_def_property_ui_text(prop, "Key", "");*/
+ prop= RNA_def_property(srna, "key", PROP_POINTER, PROP_NONE);
+ RNA_def_property_ui_text(prop, "Shape Keys", "");
rna_def_texmat_common(srna, "rna_Mesh_texspace_editable");
rna_def_ipo_common(srna);