[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [24710] trunk/blender/source/blender/ makesrna/intern/rna_nodetree.c: RNA doc update.

Roland Hess me at harkyman.com
Fri Nov 20 20:18:48 CET 2009


Revision: 24710
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=24710
Author:   harkyman
Date:     2009-11-20 20:18:48 +0100 (Fri, 20 Nov 2009)

Log Message:
-----------
RNA doc update. the "no_zbuf" flag in Defocus node was incorrectly doc'ed as "Use Zbuffer" when it really should be "Ignore Zbuffer".

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	2009-11-20 19:15:57 UTC (rev 24709)
+++ trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2009-11-20 19:18:48 UTC (rev 24710)
@@ -1497,7 +1497,7 @@
 	
 	prop = RNA_def_property(srna, "use_zbuffer", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "no_zbuf", 1);
-	RNA_def_property_ui_text(prop, "Use Z-Buffer", "Disable when using an image as input instead of actual zbuffer (auto enabled if node not image based, eg. time node)");
+	RNA_def_property_ui_text(prop, "Ignore Z-Buffer", "Enable when using an image as input instead of actual zbuffer (auto enabled if node not image based, eg. time node)");
 	RNA_def_property_update(prop, NC_NODE|NA_EDITED, "rna_Node_update");
 	
 	prop = RNA_def_property(srna, "z_scale", PROP_FLOAT, PROP_NONE);





More information about the Bf-blender-cvs mailing list