From dd878547227ef823c506ca11deea6eceb44ad8ab Mon Sep 17 00:00:00 2001 From: Peng Yan <1105012124@qq.com> Date: Sat, 7 Oct 2023 23:10:21 +0800 Subject: [PATCH] Fix #113395: Assertion fails of solidify_faces tool when not selecting partial faces of a mesh --- source/blender/editors/mesh/editmesh_tools.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/editors/mesh/editmesh_tools.cc b/source/blender/editors/mesh/editmesh_tools.cc index 62a5b8946fb..1c28900da4a 100644 --- a/source/blender/editors/mesh/editmesh_tools.cc +++ b/source/blender/editors/mesh/editmesh_tools.cc @@ -4047,6 +4047,7 @@ static int edbm_solidify_exec(bContext *C, wmOperator *op) /* select the newly generated faces */ BMO_slot_buffer_hflag_enable(bm, bmop.slots_out, "geom.out", BM_FACE, BM_ELEM_SELECT, true); + EDBM_selectmode_flush(em); if (!EDBM_op_finish(em, &bmop, op, true)) { continue; -- 2.30.2