From 77290fccd54d5a67dc81d3414809c12ae3714e9b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 21 Feb 2014 08:51:30 +1100 Subject: [PATCH] Fix random select in edge/face mode patch D336 from Henrik Aarnio --- source/blender/editors/mesh/editmesh_select.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);