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>2014-02-21 01:51:30 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-21 01:51:30 +0400
commit77290fccd54d5a67dc81d3414809c12ae3714e9b (patch)
tree2dab438f4e34c8b428a5d015fa34d56b19ecbd17
parent8565b2042eeea65967a254b29fd9af52d508efc9 (diff)
Fix random select in edge/face mode
patch D336 from Henrik Aarnio
-rw-r--r--source/blender/editors/mesh/editmesh_select.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c
index 652095df781..25d97db9ba3 100644
--- a/source/blender/editors/mesh/editmesh_select.c
+++ b/source/blender/editors/mesh/editmesh_select.c
@@ -2733,7 +2733,8 @@ static int edbm_select_random_exec(bContext *C, wmOperator *op)
}
if (select) {
- EDBM_select_flush(em);
+ /* was EDBM_select_flush, but it over select in edge/face mode */
+ EDBM_selectmode_flush(em);
}
else {
EDBM_deselect_flush(em);