From 04428d6750d7309d7c7436c65b465f2b51d3d6a2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 19 Dec 2008 04:06:24 +0000 Subject: added "description" and "readonly" properties to RNA Structs (also accessible via python) Many descriptions are not written, grep for DOC_BROKEN if you have some spare time to write struct descriptions. --- source/blender/makesrna/intern/rna_packedfile.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/makesrna/intern/rna_packedfile.c') diff --git a/source/blender/makesrna/intern/rna_packedfile.c b/source/blender/makesrna/intern/rna_packedfile.c index 0bbdd5bfd8c..76095ac9923 100644 --- a/source/blender/makesrna/intern/rna_packedfile.c +++ b/source/blender/makesrna/intern/rna_packedfile.c @@ -39,7 +39,8 @@ void RNA_def_packedfile(BlenderRNA *brna) StructRNA *srna; PropertyRNA *prop; - srna= RNA_def_struct(brna, "PackedFile", NULL, "Packed File"); + srna= RNA_def_struct(brna, "PackedFile", NULL); + RNA_def_struct_ui_text(srna, "Packed File", "DOC_BROKEN"); prop= RNA_def_property(srna, "size", PROP_INT, PROP_NONE); RNA_def_property_flag(prop, PROP_NOT_EDITABLE); -- cgit v1.2.3