[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31967] trunk/blender/source/blender/ makesrna/intern/rna_nodetree.c: Fix #23867: GroupNode. nodetree name inconsistent with Material/Texture.node_tree,

Brecht Van Lommel brechtvanlommel at pandora.be
Thu Sep 16 21:00:15 CEST 2010


Revision: 31967
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31967
Author:   blendix
Date:     2010-09-16 21:00:15 +0200 (Thu, 16 Sep 2010)

Log Message:
-----------
Fix #23867: GroupNode.nodetree name inconsistent with Material/Texture.node_tree,
changed to the latter, patch by Dan Eicher, thanks!

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_nodetree.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_nodetree.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2010-09-16 18:50:33 UTC (rev 31966)
+++ trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2010-09-16 19:00:15 UTC (rev 31967)
@@ -593,7 +593,7 @@
 {
 	PropertyRNA *prop;
 	
-	prop = RNA_def_property(srna, "nodetree", PROP_POINTER, PROP_NONE);
+	prop = RNA_def_property(srna, "node_tree", PROP_POINTER, PROP_NONE);
 	RNA_def_property_pointer_sdna(prop, NULL, "id");
 	RNA_def_property_struct_type(prop, "NodeTree");
 	RNA_def_property_flag(prop, PROP_EDITABLE);





More information about the Bf-blender-cvs mailing list