Merge branch 'blender-v4.5-release'

This commit is contained in:
Campbell Barton
2025-07-08 21:50:49 +10:00
2 changed files with 12 additions and 2 deletions

View File

@@ -370,6 +370,16 @@ static bool edbm_bevel_calc(wmOperator *op)
EDBM_flag_disable_all(em, BM_ELEM_SELECT);
BMO_slot_buffer_hflag_enable(
em->bm, bmop.slots_out, "faces.out", BM_FACE, BM_ELEM_SELECT, true);
if (affect == BEVEL_AFFECT_VERTICES) {
BMO_slot_buffer_hflag_enable(
em->bm, bmop.slots_out, "verts.out", BM_VERT, BM_ELEM_SELECT, true);
BMO_slot_buffer_hflag_enable(
em->bm, bmop.slots_out, "edges.out", BM_EDGE, BM_ELEM_SELECT, true);
if ((em->bm->selectmode & SCE_SELECT_VERTEX) == 0) {
BM_mesh_select_mode_flush_ex(em->bm, SCE_SELECT_VERTEX, BM_SELECT_LEN_FLUSH_RECALC_EDGE);
}
}
}
/* no need to de-select existing geometry */

Binary file not shown.