[Bf-blender-cvs] [c93cfcbb619] master: Fix edge-split bmesh operator giving empty result

Campbell Barton noreply at git.blender.org
Tue Oct 24 07:28:01 CEST 2017


Commit: c93cfcbb619fb1174b6064df423962da8468368c
Author: Campbell Barton
Date:   Tue Oct 24 16:29:29 2017 +1100
Branches: master
https://developer.blender.org/rBc93cfcbb619fb1174b6064df423962da8468368c

Fix edge-split bmesh operator giving empty result

===================================================================

M	source/blender/bmesh/operators/bmo_split_edges.c

===================================================================

diff --git a/source/blender/bmesh/operators/bmo_split_edges.c b/source/blender/bmesh/operators/bmo_split_edges.c
index eb7946caff0..f67a9e38fcc 100644
--- a/source/blender/bmesh/operators/bmo_split_edges.c
+++ b/source/blender/bmesh/operators/bmo_split_edges.c
@@ -50,5 +50,5 @@ void bmo_split_edges_exec(BMesh *bm, BMOperator *op)
 	/* this is where everything happens */
 	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);
+	BMO_slot_buffer_from_enabled_hflag(bm, op, op->slots_out, "edges.out", BM_EDGE, BM_ELEM_TAG);
 }



More information about the Bf-blender-cvs mailing list