Fix BMesh split-op failing to output boundary & isovert_map slots

These were defined but never written to.

Part of !129318.
This commit is contained in:
Jason C. Wenger
2025-02-18 12:00:00 +11:00
committed by Campbell Barton
parent 37c0b2c47d
commit 6a4e7edf8a

View File

@@ -488,6 +488,8 @@ void bmo_split_exec(BMesh *bm, BMOperator *op)
/* now we make our outputs by copying the dupe output */
BMO_slot_copy(&dupeop, slots_out, "geom.out", splitop, slots_out, "geom.out");
BMO_slot_copy(&dupeop, slots_out, "boundary_map.out", splitop, slots_out, "boundary_map.out");
BMO_slot_copy(&dupeop, slots_out, "isovert_map.out", splitop, slots_out, "isovert_map.out");
/* cleanup */
BMO_op_finish(bm, &dupeop);