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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-01-08 21:40:36 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-01-08 21:40:36 +0400
commit67a6d4dd56f13cd548f1004491dab1b614393ec4 (patch)
treea7502dff92360bf7674e2ea5570597944c42f2bb /source
parent36f79eab204f5d3f031f3d3bb5a514cdae1fba69 (diff)
fix for select flushing in face mode for mesh 'Select More'
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/mesh/editmesh_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_utils.c b/source/blender/editors/mesh/editmesh_utils.c
index e8132f5b82b..b95c8a05353 100644
--- a/source/blender/editors/mesh/editmesh_utils.c
+++ b/source/blender/editors/mesh/editmesh_utils.c
@@ -550,7 +550,7 @@ void EDBM_select_more(BMEditMesh *em)
BMO_slot_buffer_hflag_enable(em->bm, bmop.slots_out, "geom.out", BM_ALL_NOLOOP, BM_ELEM_SELECT, use_faces ? TRUE : FALSE);
BMO_op_finish(em->bm, &bmop);
- EDBM_select_flush(em);
+ EDBM_selectmode_flush(em);
}
void EDBM_select_less(BMEditMesh *em)