Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2013-05-13 11:32:48 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-05-13 11:32:48 +0400
commit314589dc543e1e4c92eb17769ac4f332ac74dc13 (patch)
tree78654a29dc11734912152fc6866a2cdfe3a1f812 /source/blender/makesrna/intern/rna_mesh.c
parent6bd58ac967d2d1094fda4a9b0d8fd3e3107ec822 (diff)
No end point in UI messages...
Diffstat (limited to 'source/blender/makesrna/intern/rna_mesh.c')
-rw-r--r--source/blender/makesrna/intern/rna_mesh.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c
index 86b2aa4fb2b..9c1b9a9630b 100644
--- a/source/blender/makesrna/intern/rna_mesh.c
+++ b/source/blender/makesrna/intern/rna_mesh.c
@@ -1658,7 +1658,9 @@ static void rna_def_mvert(BlenderRNA *brna)
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);
}