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:
Diffstat (limited to 'source/blender/editors/mesh/editmesh_select.c')
-rw-r--r--source/blender/editors/mesh/editmesh_select.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c
index 0c68bb8f82b..c8449644dd0 100644
--- a/source/blender/editors/mesh/editmesh_select.c
+++ b/source/blender/editors/mesh/editmesh_select.c
@@ -2205,7 +2205,7 @@ void EDBM_selectmode_set(BMEditMesh *em)
}
}
else if (em->selectmode & SCE_SELECT_FACE) {
- /* deselect eges, and select again based on face select */
+ /* Deselect edges, and select again based on face select. */
BM_ITER_MESH (eed, &iter, em->bm, BM_EDGES_OF_MESH) {
BM_edge_select_set(em->bm, eed, false);
}
@@ -2247,7 +2247,7 @@ void EDBM_selectmode_convert(BMEditMesh *em,
/* first tag-to-select, then select --- this avoids a feedback loop */
- /* have to find out what the selectionmode was previously */
+ /* Have to find out what the selection-mode was previously. */
if (selectmode_old == SCE_SELECT_VERTEX) {
if (bm->totvertsel == 0) {
/* pass */