fix for own mistake in recent changes to scanfill, bmo_triangle_fill_exec() (alt+f), was missing BLI_SCANFILL_CALC_HOLES argument.
reported as [#33819]
This commit is contained in:
@@ -190,7 +190,7 @@ void bmo_triangle_fill_exec(BMesh *bm, BMOperator *op)
|
||||
/* sf_edge->tmp.p = e; */ /* UNUSED */
|
||||
}
|
||||
|
||||
BLI_scanfill_calc(&sf_ctx, 0);
|
||||
BLI_scanfill_calc(&sf_ctx, BLI_SCANFILL_CALC_HOLES);
|
||||
|
||||
for (sf_tri = sf_ctx.fillfacebase.first; sf_tri; sf_tri = sf_tri->next) {
|
||||
BMFace *f = BM_face_create_quad_tri(bm,
|
||||
|
||||
Reference in New Issue
Block a user