[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [30977] branches/soc-2010-jwilkins/source/ blender/makesrna/intern/rna_brush.c: More fixups for sculpt plane sample range

Jason Wilkins Jason.A.Wilkins at gmail.com
Mon Aug 2 14:38:08 CEST 2010


Revision: 30977
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=30977
Author:   jwilkins
Date:     2010-08-02 14:38:08 +0200 (Mon, 02 Aug 2010)

Log Message:
-----------
More fixups for sculpt plane sample range

Modified Paths:
--------------
    branches/soc-2010-jwilkins/source/blender/makesrna/intern/rna_brush.c

Modified: branches/soc-2010-jwilkins/source/blender/makesrna/intern/rna_brush.c
===================================================================
--- branches/soc-2010-jwilkins/source/blender/makesrna/intern/rna_brush.c	2010-08-02 12:35:32 UTC (rev 30976)
+++ branches/soc-2010-jwilkins/source/blender/makesrna/intern/rna_brush.c	2010-08-02 12:38:08 UTC (rev 30977)
@@ -503,8 +503,9 @@
 	prop= RNA_def_property(srna, "sculpt_plane_range", PROP_FLOAT, PROP_FACTOR);
 	RNA_def_property_float_sdna(prop, NULL, "sculpt_plane_range");
 	RNA_def_property_range(prop, 0, 10);
+	RNA_def_property_float_default(prop, 1);
 	RNA_def_property_ui_range(prop, 0, 2, 0, 0);
-	RNA_def_property_ui_text(prop, "Sculpt Plane Range", "Determines the range, in brush radii, to sample vertexes to determine the area sculpt plane");
+	RNA_def_property_ui_text(prop, "Sculpt Plane Range", "Determines the range, in brush radii, to sample vertexes when determining the area sculpt plane");
 	RNA_def_property_update(prop, 0, "rna_Brush_update");
 
 	/* number values */





More information about the Bf-blender-cvs mailing list