BMesh: remove redundant loop in select-next-active

Thanks to @nBurn for spotting
This commit is contained in:
Campbell Barton 2018-04-03 18:32:55 +02:00
parent ab695c3297
commit 2f723a414f
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ def elems_depth_search(ele_init, depths, other_edges_over_cb, results_init=None)
else:
test_ele = {
v for v, depth in vert_depths.items()
if depth >= depth_min for e in v.link_edges if not e.is_wire}
if depth >= depth_min}
result_ele = set()