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>2013-01-14 12:32:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-01-14 12:32:02 +0400
commitd476113c05af90ae3b8beffa2637fe2aee512bbd (patch)
tree67ea142246486da05d5738d54e585a02f8eb39c6 /source/blender/editors/mesh/editmesh_select.c
parente0388a881b668c3c7de8ccb942f360f85243bdbb (diff)
fix [#33847] Ctrl+L doesnt works in edge selection mode
own bug caused be changes to selection flushing.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_select.c')
-rw-r--r--source/blender/editors/mesh/editmesh_select.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c
index f552a7b46c1..d727caf5cb9 100644
--- a/source/blender/editors/mesh/editmesh_select.c
+++ b/source/blender/editors/mesh/editmesh_select.c
@@ -2387,8 +2387,7 @@ static int edbm_select_linked_exec(bContext *C, wmOperator *op)
if (BM_elem_flag_test(v, BM_ELEM_TAG)) {
e = BMW_begin(&walker, v);
for (; e; e = BMW_step(&walker)) {
- BM_vert_select_set(em->bm, e->v1, TRUE);
- BM_vert_select_set(em->bm, e->v2, TRUE);
+ BM_edge_select_set(em->bm, e, true);
}
}
}