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:
authorNicholas Bishop <nicholasbishop@gmail.com>2012-06-11 14:14:46 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2012-06-11 14:14:46 +0400
commitd214b140522424a6794a0f70b2bd738ec41a7005 (patch)
treebe46a073d8504e1db04af2fce31c00987caab0c5 /source/blender/editors/mesh/editmesh_select.c
parent9a92b0c5c42ff5960efea18bf83526dd815aa64b (diff)
Add missing/incorrect selection flushes.
Added selection flush after loop cut, changed select_linked_pick's flush to use the em selection flag. Fixes bug [#31715] Cases where verts and edges are selected but not relevant faces
Diffstat (limited to 'source/blender/editors/mesh/editmesh_select.c')
-rw-r--r--source/blender/editors/mesh/editmesh_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c
index 0a8fe142aaf..57bce6b9de4 100644
--- a/source/blender/editors/mesh/editmesh_select.c
+++ b/source/blender/editors/mesh/editmesh_select.c
@@ -1889,7 +1889,7 @@ static int edbm_select_linked_pick_invoke(bContext *C, wmOperator *op, wmEvent *
}
BMW_end(&walker);
- BM_mesh_select_mode_flush(bm);
+ EDBM_selectmode_flush(em);
}
WM_event_add_notifier(C, NC_GEOM | ND_SELECT, obedit);