Fix mixup w/ wmOperator/BMOperator flag

This commit is contained in:
Campbell Barton 2015-11-18 11:09:44 +11:00
parent 22931f2f9f
commit eab0063481
2 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -5127,7 +5127,7 @@ static int edbm_bridge_edge_loops_exec(bContext *C, wmOperator *op)
EDBM_mesh_normals_update(em);
BMO_op_initf(
em->bm, &bmop_subd, op->flag,
em->bm, &bmop_subd, 0,
"subdivide_edgering edges=%S interp_mode=%i cuts=%i smooth=%f "
"profile_shape=%i profile_shape_factor=%f",
&bmop, "edges.out", op_props.interp_mode, op_props.cuts, op_props.smooth,