UI messages: minor fixes...

This commit is contained in:
Bastien Montagne 2015-02-03 20:25:14 +01:00
parent f4535c1a7a
commit 37a08ae5c5
2 changed files with 2 additions and 2 deletions

View File

@ -988,7 +988,7 @@ void MESH_OT_vert_connect_concave(wmOperatorType *ot)
/* identifiers */
ot->name = "Split Concave Faces";
ot->idname = "MESH_OT_vert_connect_concave";
ot->description = "Makes all faces convex";
ot->description = "Make all faces convex";
/* api callbacks */
ot->exec = edbm_vert_connect_concave_exec;

View File

@ -1178,7 +1178,7 @@ static void rna_def_strip_proxy(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_overwrite", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_negative_sdna(prop, NULL, "build_flags", SEQ_PROXY_SKIP_EXISTING);
RNA_def_property_ui_text(prop, "Overwite", "Overwrite existing proxy files when building");
RNA_def_property_ui_text(prop, "Overwrite", "Overwrite existing proxy files when building");
prop = RNA_def_property(srna, "build_25", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "build_size_flags", SEQ_PROXY_IMAGE_SIZE_25);