From cac253a50236af8e8f427a2bf00d8dbdb1dee6e0 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 28 Nov 2012 14:15:54 +0000 Subject: [PATCH] fix for minor annoyance - when extruding a circle there would always be one face flipped, now edges are all ordered in the same direction. --- source/blender/bmesh/operators/bmo_primitive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/bmesh/operators/bmo_primitive.c b/source/blender/bmesh/operators/bmo_primitive.c index 38096b4ca6f..b8f154350ea 100644 --- a/source/blender/bmesh/operators/bmo_primitive.c +++ b/source/blender/bmesh/operators/bmo_primitive.c @@ -560,7 +560,7 @@ void bmo_create_circle_exec(BMesh *bm, BMOperator *op) if (!a) return; - BM_edge_create(bm, lastv1, firstv1, NULL, FALSE); + BM_edge_create(bm, firstv1, lastv1, NULL, FALSE); if (cap_ends) { BMFace *f; -- 2.28.0