Fix edge-split bmesh operator giving empty result

This commit is contained in:
2017-10-24 16:29:29 +11:00
parent c71f2f1404
commit c93cfcbb61

View File

@@ -50,5 +50,5 @@ void bmo_split_edges_exec(BMesh *bm, BMOperator *op)
/* this is where everything happens */ /* this is where everything happens */
BM_mesh_edgesplit(bm, use_verts, true, false); 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);
} }