Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorRohan Rathi <rohanrathi08@gmail.com>2018-08-04 20:02:28 +0300
committerRohan Rathi <rohanrathi08@gmail.com>2018-08-04 20:02:28 +0300
commit7db1db72bbdd178e0c8da4b39bfa166a1f0e2f84 (patch)
tree73d33f769646871537235f0c17adda88f9180086 /source
parent997b35f57a5454b5a43d47fddd84459bd19936f0 (diff)
Fixed hnmode not being passed with bevel tool
Diffstat (limited to 'source')
-rw-r--r--source/blender/bmesh/operators/bmo_bevel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_bevel.c b/source/blender/bmesh/operators/bmo_bevel.c
index cd27b486929..9d956c26390 100644
--- a/source/blender/bmesh/operators/bmo_bevel.c
+++ b/source/blender/bmesh/operators/bmo_bevel.c
@@ -66,7 +66,7 @@ void bmo_bevel_exec(BMesh *bm, BMOperator *op)
}
}
- BM_mesh_bevel(bm, offset, offset_type, seg, profile, vonly, false, clamp_overlap, NULL, -1, material, loop_slide, mark_seam, mark_sharp, 0/*hnmode*/, op);
+ BM_mesh_bevel(bm, offset, offset_type, seg, profile, vonly, false, clamp_overlap, NULL, -1, material, loop_slide, mark_seam, mark_sharp, hnmode, op);
BMO_slot_buffer_from_enabled_hflag(bm, op, op->slots_out, "faces.out", BM_FACE, BM_ELEM_TAG);
BMO_slot_buffer_from_enabled_hflag(bm, op, op->slots_out, "edges.out", BM_EDGE, BM_ELEM_TAG);