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>2019-01-04 08:23:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-04 08:23:04 +0300
commitc3e454b8e0808c8615cd58d86547e63642cde91d (patch)
tree77d20c732229c18dafd226d356814bd378258d0b /source/blender/bmesh/operators/bmo_dupe.c
parent0fe80121b9f073c6d9379f6a94cc0550704826e9 (diff)
Fix T60099: Inconsistent normals from spin tool
Diffstat (limited to 'source/blender/bmesh/operators/bmo_dupe.c')
-rw-r--r--source/blender/bmesh/operators/bmo_dupe.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/bmesh/operators/bmo_dupe.c b/source/blender/bmesh/operators/bmo_dupe.c
index 7f13731dc02..9dd4eded002 100644
--- a/source/blender/bmesh/operators/bmo_dupe.c
+++ b/source/blender/bmesh/operators/bmo_dupe.c
@@ -525,8 +525,9 @@ void bmo_spin_exec(BMesh *bm, BMOperator *op)
BMO_op_finish(bm, &dupop);
}
else {
- BMO_op_initf(bm, &extop, op->flag, "extrude_face_region geom=%S use_normal_flip=%b",
- op, "geom_last.out", use_normal_flip && (a == 0));
+ BMO_op_initf(bm, &extop, op->flag,
+ "extrude_face_region geom=%S use_normal_flip=%b use_normal_from_adjacent=%b",
+ op, "geom_last.out", use_normal_flip && (a == 0), (a != 0));
BMO_op_exec(bm, &extop);
if ((use_merge && (a == steps - 1)) == false) {
BMO_op_callf(bm, op->flag,