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>2016-01-12 20:05:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-01-12 20:05:27 +0300
commita934da6bce97e3e25bca0d03aeae186b3984865a (patch)
treefff0141e908f00c061083e224a761672cc94ab39 /release
parent8ca76d15b219921b1a6326d7f99a1b0a92e1c11d (diff)
BMesh: select next can now step over existing selection
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/bmesh/find_adjacent.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_operators/bmesh/find_adjacent.py b/release/scripts/startup/bl_operators/bmesh/find_adjacent.py
index e83fd1d2120..46edcd28deb 100644
--- a/release/scripts/startup/bl_operators/bmesh/find_adjacent.py
+++ b/release/scripts/startup/bl_operators/bmesh/find_adjacent.py
@@ -272,6 +272,7 @@ def select_next(bm, report):
ele.select_set(False)
ele.select_set(True)
+ bm.select_history.discard(ele)
bm.select_history.add(ele)
if type(ele) is bmesh.types.BMFace:
bm.faces.active = ele