[Bf-blender-cvs] [18dc84dc354] blender2.8: Poly Build: disable use_boundary_tear

Campbell Barton noreply at git.blender.org
Mon Sep 10 09:26:14 CEST 2018


Commit: 18dc84dc35408123c20d473dd98fc279918d8460
Author: Campbell Barton
Date:   Mon Sep 10 17:35:03 2018 +1000
Branches: blender2.8
https://developer.blender.org/rB18dc84dc35408123c20d473dd98fc279918d8460

Poly Build: disable use_boundary_tear

Without this, it's more like deleting the vertex than dissolving.

===================================================================

M	source/blender/editors/mesh/editmesh_polybuild.c

===================================================================

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;
 			}



More information about the Bf-blender-cvs mailing list