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>2015-02-06 11:51:53 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-02-06 11:52:31 +0300
commit580bb2621330bdc8d99a92ce8be1856053c5b05d (patch)
tree7d61c675d41b8b85b1cb87316e7143c8b47f0973 /source/blender/makesrna/intern/rna_mesh_api.c
parent61c66a996ca5e590097e8864df027602493f58f4 (diff)
Fix some UI messages from own recent merge, and RNA code checking for final '.', was a bit too rough.
Diffstat (limited to 'source/blender/makesrna/intern/rna_mesh_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_mesh_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_mesh_api.c b/source/blender/makesrna/intern/rna_mesh_api.c
index 40dad902eae..53704e24bff 100644
--- a/source/blender/makesrna/intern/rna_mesh_api.c
+++ b/source/blender/makesrna/intern/rna_mesh_api.c
@@ -200,7 +200,7 @@ static void rna_Mesh_normals_split_custom_set(Mesh *mesh, ReportList *reports, i
if (normals_len != numloops * 3) {
BKE_reportf(reports, RPT_ERROR,
- "number of custom normals is not number of loops (%f / %d)",
+ "Number of custom normals is not number of loops (%f / %d)",
(float)normals_len / 3.0f, numloops);
return;
}
@@ -216,7 +216,7 @@ static void rna_Mesh_normals_split_custom_set_from_vertices(
if (normals_len != numverts * 3) {
BKE_reportf(reports, RPT_ERROR,
- "number of custom normals is not number of vertices (%f / %d)",
+ "Number of custom normals is not number of vertices (%f / %d)",
(float)normals_len / 3.0f, numverts);
return;
}