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
path: root/source
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2013-04-08 17:19:50 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-04-08 17:19:50 +0400
commit651167090c366b30e38b650fe616e7a25f6732a9 (patch)
tree39be64e210b24ec651c503366ace76eebae4dab3 /source
parent85e53317be8f2d390752878dfc0a1aafc33df7ca (diff)
A few more UI messages fixes...
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c6
-rw-r--r--source/blender/makesrna/intern/rna_linestyle.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index f46721ddd62..20b0bf9e647 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -2679,7 +2679,7 @@ void MESH_OT_poke(wmOperatorType *ot)
/* identifiers */
ot->name = "Poke Faces";
ot->idname = "MESH_OT_poke";
- ot->description = "Splits a face into a fan";
+ ot->description = "Split a face into a fan";
/* api callbacks */
ot->exec = edbm_poke_face_exec;
@@ -3910,7 +3910,7 @@ void MESH_OT_mark_freestyle_edge(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Mark Freestyle Edge";
- ot->description = "(un)mark selected edges as Freestyle feature edges";
+ ot->description = "(Un)mark selected edges as Freestyle feature edges";
ot->idname = "MESH_OT_mark_freestyle_edge";
/* api callbacks */
@@ -3971,7 +3971,7 @@ void MESH_OT_mark_freestyle_face(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Mark Freestyle Face";
- ot->description = "(un)mark selected faces for exclusion from Freestyle feature edge detection";
+ ot->description = "(Un)mark selected faces for exclusion from Freestyle feature edge detection";
ot->idname = "MESH_OT_mark_freestyle_face";
/* api callbacks */
diff --git a/source/blender/makesrna/intern/rna_linestyle.c b/source/blender/makesrna/intern/rna_linestyle.c
index 3bc72a18e01..c28229c7bb4 100644
--- a/source/blender/makesrna/intern/rna_linestyle.c
+++ b/source/blender/makesrna/intern/rna_linestyle.c
@@ -610,7 +610,7 @@ static void rna_def_linestyle_modifiers(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "error");
RNA_def_property_ui_text(prop, "Error",
"Maximum distance allowed between the new Bezier curve and the "
- "original backbone geometry)");
+ "original backbone geometry");
RNA_def_property_update(prop, NC_LINESTYLE, NULL);
srna = RNA_def_struct(brna, "LineStyleGeometryModifier_SinusDisplacement", "LineStyleGeometryModifier");