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:
authorCampbell Barton <ideasman42@gmail.com>2010-06-11 14:46:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-06-11 14:46:47 +0400
commiteb3220fa835b8f4be8f5512214cded92c4544833 (patch)
treef0cad17146da6e21260c540b3fe98b2e624f813d /source/blender/makesrna/intern/rna_ID.c
parent4aa2ad003b5a71fefbce5c89907d74c73b5d93da (diff)
rna api
- ParticleHairKey.location can now be set (object space location). - Library.parent was set to ID type.
Diffstat (limited to 'source/blender/makesrna/intern/rna_ID.c')
-rw-r--r--source/blender/makesrna/intern/rna_ID.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_ID.c b/source/blender/makesrna/intern/rna_ID.c
index 467eb237b9a..009afec2ded 100644
--- a/source/blender/makesrna/intern/rna_ID.c
+++ b/source/blender/makesrna/intern/rna_ID.c
@@ -405,7 +405,7 @@ static void rna_def_library(BlenderRNA *brna)
/* TODO - lib->filename isnt updated, however the outliner also skips this, probably only needed on read. */
prop= RNA_def_property(srna, "parent", PROP_POINTER, PROP_NONE);
- RNA_def_property_struct_type(prop, "ID");
+ RNA_def_property_struct_type(prop, "Library");
RNA_def_property_ui_text(prop, "Parent", "");
}
void RNA_def_ID(BlenderRNA *brna)