[Bf-blender-cvs] [37a08ae] master: UI messages: minor fixes...

Bastien Montagne noreply at git.blender.org
Tue Feb 3 20:25:39 CET 2015


Commit: 37a08ae5c569fd6f946bcf7d999a33d0901e24eb
Author: Bastien Montagne
Date:   Tue Feb 3 20:25:14 2015 +0100
Branches: master
https://developer.blender.org/rB37a08ae5c569fd6f946bcf7d999a33d0901e24eb

UI messages: minor fixes...

===================================================================

M	source/blender/editors/mesh/editmesh_tools.c
M	source/blender/makesrna/intern/rna_sequencer.c

===================================================================

diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 3a9e366..16b74c3 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -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;
diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index 871dd93..f628112 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -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);




More information about the Bf-blender-cvs mailing list