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>2013-08-13 05:00:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-08-13 05:00:07 +0400
commit49411a6e37ce88e644db733621ac2577851a7b7e (patch)
tree1c8b40d96f40d1e991694ce227d6e7572b620422 /source/blender/bmesh/operators/bmo_split_edges.c
parentfd14c344e0b1160ab17243297a86521d73256b8b (diff)
fix own regression, rip tool wasn't handling selection.
Diffstat (limited to 'source/blender/bmesh/operators/bmo_split_edges.c')
-rw-r--r--source/blender/bmesh/operators/bmo_split_edges.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_split_edges.c b/source/blender/bmesh/operators/bmo_split_edges.c
index c0847930422..88c1c3dca44 100644
--- a/source/blender/bmesh/operators/bmo_split_edges.c
+++ b/source/blender/bmesh/operators/bmo_split_edges.c
@@ -48,7 +48,7 @@ void bmo_split_edges_exec(BMesh *bm, BMOperator *op)
}
/* this is where everything happens */
- BM_mesh_edgesplit(bm, use_verts, true);
+ BM_mesh_edgesplit(bm, use_verts, true, false);
BMO_slot_buffer_from_enabled_hflag(bm, op, op->slots_out, "edges.out", BM_EDGE, BM_ELEM_INTERNAL_TAG);
}