[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [56750] trunk/blender/source/blender/ makesrna/intern/rna_mesh.c: No end point in UI messages...

Bastien Montagne montagne29 at wanadoo.fr
Mon May 13 09:32:48 CEST 2013


Revision: 56750
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=56750
Author:   mont29
Date:     2013-05-13 07:32:48 +0000 (Mon, 13 May 2013)
Log Message:
-----------
No end point in UI messages...

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

Modified: trunk/blender/source/blender/makesrna/intern/rna_mesh.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_mesh.c	2013-05-13 07:13:28 UTC (rev 56749)
+++ trunk/blender/source/blender/makesrna/intern/rna_mesh.c	2013-05-13 07:32:48 UTC (rev 56750)
@@ -1658,7 +1658,9 @@
 
 	prop = RNA_def_property(srna, "undeformed_co", PROP_FLOAT, PROP_TRANSLATION);
 	RNA_def_property_array(prop, 3);
-	RNA_def_property_ui_text(prop, "Undeformed Location", "For meshes with modifiers applied, the coordinate of the vertex with no deforming modifiers applied, as used for generated texture coordinates. ");
+	RNA_def_property_ui_text(prop, "Undeformed Location",
+	                         "For meshes with modifiers applied, the coordinate of the vertex with no deforming "
+	                         "modifiers applied, as used for generated texture coordinates");
 	RNA_def_property_float_funcs(prop, "rna_MeshVertex_undeformed_co_get", NULL, NULL);
 	RNA_def_property_clear_flag(prop, PROP_EDITABLE);
 }




More information about the Bf-blender-cvs mailing list