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>2012-04-03 11:35:50 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-03 11:35:50 +0400
commitcc6b8bd3e65ec848cee0374688219307864f58e9 (patch)
treed8caf087c9ffe90f757d2aca49e357795ada1d53 /source/blender/editors/mesh/editmesh_select.c
parent285970753ee81ef383bf74c59fa97987d90c5698 (diff)
fix [#30786] bmesh: select linked not ignoring hidden verts/edges/faces (part 2)
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 57041e967e9..355d64a9fe1 100644
--- a/source/blender/editors/mesh/editmesh_select.c
+++ b/source/blender/editors/mesh/editmesh_select.c
@@ -1919,7 +1919,7 @@ static int edbm_select_linked_exec(bContext *C, wmOperator *op)
BMW_init(&walker, em->bm, BMW_SHELL,
BMW_MASK_NOP, BMW_MASK_NOP, BMW_MASK_NOP,
- BMW_FLAG_NOP, /* BMESH_TODO - should be BMW_FLAG_TEST_HIDDEN ? */
+ BMW_FLAG_TEST_HIDDEN,
BMW_NIL_LAY);
BM_ITER(v, &iter, em->bm, BM_VERTS_OF_MESH, NULL) {