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:
authorJoseph Eagar <joeedh@gmail.com>2009-10-24 09:43:27 +0400
committerJoseph Eagar <joeedh@gmail.com>2009-10-24 09:43:27 +0400
commit672c8926d7801fcc4b45e9dff75022e1ff9d240b (patch)
tree33dfc4620f52af667b4c251d0a940de86118dcc7 /source/blender/editors
parent8f788c64db587e74079d812dbcea40c2bd4b91ff (diff)
parent6ffb79107c9509f01019c8bf9af2caf0348ca330 (diff)
files missing from recent merge
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/mesh/bmesh_tools.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/bmesh_tools.c b/source/blender/editors/mesh/bmesh_tools.c
index 9b31a06edb3..ad1654d2f3a 100644
--- a/source/blender/editors/mesh/bmesh_tools.c
+++ b/source/blender/editors/mesh/bmesh_tools.c
@@ -2990,9 +2990,10 @@ static int mesh_rip_invoke(bContext *C, wmOperator *op, wmEvent *event)
then rip the two adjacent edges in the vert fan.*/
if (em->bm->totvertsel == 1 && em->bm->totedgesel == 0 && em->bm->totfacesel == 0) {
/*find selected vert*/
- BM_ITER(v, &iter, em->bm, BM_VERTS_OF_MESH, NULL)
+ BM_ITER(v, &iter, em->bm, BM_VERTS_OF_MESH, NULL) {
if (BM_TestHFlag(v, BM_SELECT))
break;
+ }
/*this should be impossible, but sanity checks are a good thing*/
if (!v)