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:
authorCampbell Barton <ideasman42@gmail.com>2018-05-24 18:49:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-24 18:49:44 +0300
commitb2ee8e1cbad588ab5efae1aecedcd0d4d40bb0a6 (patch)
tree1aef010769a97dac3cc1f50efd3fb1243977a614 /source/blender/editors/mesh
parent72f4bdf604c51b958f49a9bd6d0957b51af9a313 (diff)
Fix typo in editmesh edge delete
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 8438375a97f..64f61ef3c4a 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -438,7 +438,7 @@ static int edbm_delete_exec(bContext *C, wmOperator *op)
break;
case MESH_DELETE_EDGE: /* Erase Edges */
if (!(em->bm->totedgesel &&
- EDBM_op_callf(em, op, "delete geom=%he context=%i", BM_ELEM_SELECT, DEL_FACES)))
+ EDBM_op_callf(em, op, "delete geom=%he context=%i", BM_ELEM_SELECT, DEL_EDGES)))
{
continue;
}