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:
authorMatt Ebb <matt@mke3.net>2010-04-01 10:37:35 +0400
committerMatt Ebb <matt@mke3.net>2010-04-01 10:37:35 +0400
commit86a112e8a521001669eeb939eeae3a87acac7f1a (patch)
tree883fa981f899f0a2e8cb96711073034f9b62ce9a /source/blender/editors/mesh/editmesh_mods.c
parent2f1385c189428d65e77504819638a54a9b032f60 (diff)
Fix [#21860] Quads/Triangles Selection miss to mark some Edges.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_mods.c')
-rw-r--r--source/blender/editors/mesh/editmesh_mods.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/editmesh_mods.c b/source/blender/editors/mesh/editmesh_mods.c
index e9437bfce8a..7a5fd2d13cd 100644
--- a/source/blender/editors/mesh/editmesh_mods.c
+++ b/source/blender/editors/mesh/editmesh_mods.c
@@ -2853,6 +2853,8 @@ int select_by_number_vertices_exec(bContext *C, wmOperator *op)
EM_select_face(efa, (numverts==3) );
}
}
+
+ EM_selectmode_flush(em);
WM_event_add_notifier(C, NC_GEOM|ND_SELECT, obedit->data);