[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [49095] branches/soc-2012-sushi/source/ blender: Changed the names of the parameters, based on suggestions from the community.

Alexander Pinzon apinzonf at gmail.com
Sat Jul 21 01:20:43 CEST 2012


Revision: 49095
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=49095
Author:   apinzonf
Date:     2012-07-20 23:20:43 +0000 (Fri, 20 Jul 2012)
Log Message:
-----------
Changed the names of the parameters, based on suggestions from the community.

Modified Paths:
--------------
    branches/soc-2012-sushi/source/blender/editors/mesh/editmesh_tools.c
    branches/soc-2012-sushi/source/blender/makesrna/intern/rna_modifier.c

Modified: branches/soc-2012-sushi/source/blender/editors/mesh/editmesh_tools.c
===================================================================
--- branches/soc-2012-sushi/source/blender/editors/mesh/editmesh_tools.c	2012-07-20 23:12:05 UTC (rev 49094)
+++ branches/soc-2012-sushi/source/blender/editors/mesh/editmesh_tools.c	2012-07-20 23:20:43 UTC (rev 49095)
@@ -1676,7 +1676,7 @@
 	RNA_def_boolean(ot->srna, "use_x", 1, "Smooth X Axis", "Smooth object along	X axis");
 	RNA_def_boolean(ot->srna, "use_y", 1, "Smooth Y Axis", "Smooth object along	Y axis");
 	RNA_def_boolean(ot->srna, "use_z", 1, "Smooth Z Axis", "Smooth object along	Z axis");
-	RNA_def_boolean(ot->srna, "volume_preservation", 1, "Volume Preservation", "Apply volume preservation after smooth");
+	RNA_def_boolean(ot->srna, "volume_preservation", 1, "Preserve Volume", "Apply volume preservation after smooth");
 
 }
 

Modified: branches/soc-2012-sushi/source/blender/makesrna/intern/rna_modifier.c
===================================================================
--- branches/soc-2012-sushi/source/blender/makesrna/intern/rna_modifier.c	2012-07-20 23:12:05 UTC (rev 49094)
+++ branches/soc-2012-sushi/source/blender/makesrna/intern/rna_modifier.c	2012-07-20 23:20:43 UTC (rev 49095)
@@ -1778,7 +1778,7 @@
 
 	prop = RNA_def_property(srna, "volume_preservation", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", MOD_LAPLACIANSMOOTH_VOLUME_PRESERVATION);
-	RNA_def_property_ui_text(prop, "Volume Preservation", "Apply volume preservation after smooth");
+	RNA_def_property_ui_text(prop, "Preserve Volume", "Apply volume preservation after smooth");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");
 
 	prop = RNA_def_property(srna, "lamb", PROP_FLOAT, PROP_NONE);




More information about the Bf-blender-cvs mailing list