From 6b189d2bcf3536231f7040926ed34fe01012f14e Mon Sep 17 00:00:00 2001 From: mano-wii Date: Mon, 26 Aug 2019 14:15:25 -0300 Subject: Edit Mesh: New option "Split Edges & Faces" to "AutoMerge" Ref T66423 Differential revision: https://developer.blender.org/D5562 --- source/blender/makesdna/DNA_scene_types.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source/blender/makesdna/DNA_scene_types.h') diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h index 412bf358a44..617656d1b2c 100644 --- a/source/blender/makesdna/DNA_scene_types.h +++ b/source/blender/makesdna/DNA_scene_types.h @@ -1366,6 +1366,12 @@ typedef struct MeshStatVis { /* *************************************************************** */ /* Tool Settings */ +/* CurvePaintSettings.surface_plane */ +enum { + AUTO_MERGE = 1 << 0, + AUTO_MERGE_AND_SPLIT = 1 << 1, +}; + typedef struct ToolSettings { /** Vertex paint. */ VPaint *vpaint; -- cgit v1.2.3