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-03 22:25:14 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-02-03 22:25:14 +0300
commit37a08ae5c569fd6f946bcf7d999a33d0901e24eb (patch)
tree3ee42355aea3376032c04ea21014b5ce4d287b76 /source/blender
parentf4535c1a7a51df319d99fe8e60168e5d816a038c (diff)
UI messages: minor fixes...
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c2
-rw-r--r--source/blender/makesrna/intern/rna_sequencer.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 3a9e366fe37..16b74c3bddd 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 871dd93b525..f628112a19a 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);