A few more UI messages fixes...

This commit is contained in:
Bastien Montagne 2013-04-08 13:19:50 +00:00
parent 85e53317be
commit 651167090c
2 changed files with 4 additions and 4 deletions

@ -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 */

@ -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");