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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-11-18 03:09:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-11-18 03:09:44 +0300
commiteab00634812baf38b5b6535d72284236785dccd5 (patch)
tree7d79e39f28760c87223d6357a961f601b09fbdc3 /source/blender/editors/mesh/editmesh_bisect.c
parent22931f2f9f35c2f227639a534ced53fece57a8a6 (diff)
Fix mixup w/ wmOperator/BMOperator flag
Diffstat (limited to 'source/blender/editors/mesh/editmesh_bisect.c')
-rw-r--r--source/blender/editors/mesh/editmesh_bisect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_bisect.c b/source/blender/editors/mesh/editmesh_bisect.c
index 08d0697e0f1..0e1ba2b1c25 100644
--- a/source/blender/editors/mesh/editmesh_bisect.c
+++ b/source/blender/editors/mesh/editmesh_bisect.c
@@ -285,13 +285,13 @@ static int mesh_bisect_exec(bContext *C, wmOperator *op)
/* Fill */
BMO_op_initf(
- bm, &bmop_fill, op->flag,
+ bm, &bmop_fill, 0,
"triangle_fill edges=%S normal=%v use_dissolve=%b",
&bmop, "geom_cut.out", normal_fill, true);
BMO_op_exec(bm, &bmop_fill);
/* Copy Attributes */
- BMO_op_initf(bm, &bmop_attr, op->flag,
+ BMO_op_initf(bm, &bmop_attr, 0,
"face_attribute_fill faces=%S use_normals=%b use_data=%b",
&bmop_fill, "geom.out", false, true);
BMO_op_exec(bm, &bmop_attr);