From 18dc84dc35408123c20d473dd98fc279918d8460 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 10 Sep 2018 17:35:03 +1000 Subject: Poly Build: disable use_boundary_tear Without this, it's more like deleting the vertex than dissolving. --- source/blender/editors/mesh/editmesh_polybuild.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') diff --git a/source/blender/editors/mesh/editmesh_polybuild.c b/source/blender/editors/mesh/editmesh_polybuild.c index 14ae6afc7cb..873351ee761 100644 --- a/source/blender/editors/mesh/editmesh_polybuild.c +++ b/source/blender/editors/mesh/editmesh_polybuild.c @@ -452,7 +452,7 @@ static int edbm_polybuild_dissolve_at_cursor_invoke( if (!EDBM_op_callf(em, op, "dissolve_verts verts=%hv use_face_split=%b use_boundary_tear=%b", - BM_ELEM_TAG, false, true)) + BM_ELEM_TAG, false, false)) { return OPERATOR_CANCELLED; } -- cgit v1.2.3