[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [47794] trunk/blender/source/blender/ makesrna/intern/rna_modifier.c: Minor fix [#31798] [minor] simpledeform modifier tooltip

Bastien Montagne montagne29 at wanadoo.fr
Tue Jun 12 20:35:43 CEST 2012


Revision: 47794
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47794
Author:   mont29
Date:     2012-06-12 18:35:36 +0000 (Tue, 12 Jun 2012)
Log Message:
-----------
Minor fix [#31798] [minor] simpledeform modifier tooltip

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

Modified: trunk/blender/source/blender/makesrna/intern/rna_modifier.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_modifier.c	2012-06-12 17:14:12 UTC (rev 47793)
+++ trunk/blender/source/blender/makesrna/intern/rna_modifier.c	2012-06-12 18:35:36 UTC (rev 47794)
@@ -2450,12 +2450,12 @@
 
 	prop = RNA_def_property(srna, "lock_x", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "axis", MOD_SIMPLEDEFORM_LOCK_AXIS_X);
-	RNA_def_property_ui_text(prop, "Lock X Axis", "Do not allow tapering along the X axis");
+	RNA_def_property_ui_text(prop, "Lock X Axis", "Do not allow deformation along the X axis");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");
 
 	prop = RNA_def_property(srna, "lock_y", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "axis", MOD_SIMPLEDEFORM_LOCK_AXIS_Y);
-	RNA_def_property_ui_text(prop, "Lock Y Axis", "Do not allow tapering along the Y axis");
+	RNA_def_property_ui_text(prop, "Lock Y Axis", "Do not allow deformation along the Y axis");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");
 }
 




More information about the Bf-blender-cvs mailing list