[Bf-blender-cvs] [0083c69624d] master: Missing from last commit

Campbell Barton noreply at git.blender.org
Tue Sep 25 05:31:01 CEST 2018


Commit: 0083c69624d2ae3df511c2ed9ae9baced75394af
Author: Campbell Barton
Date:   Tue Sep 25 13:44:25 2018 +1000
Branches: master
https://developer.blender.org/rB0083c69624d2ae3df511c2ed9ae9baced75394af

Missing from last commit

===================================================================

M	source/blender/editors/mesh/editmesh_extrude.c

===================================================================

diff --git a/source/blender/editors/mesh/editmesh_extrude.c b/source/blender/editors/mesh/editmesh_extrude.c
index e381cfdbdea..1e5e279ef35 100644
--- a/source/blender/editors/mesh/editmesh_extrude.c
+++ b/source/blender/editors/mesh/editmesh_extrude.c
@@ -474,8 +474,9 @@ static int edbm_extrude_edges_exec(bContext *C, wmOperator *op)
 {
 	Object *obedit = CTX_data_edit_object(C);
 	BMEditMesh *em = BKE_editmesh_from_object(obedit);
+	const bool use_normal_flip = RNA_boolean_get(op->ptr, "use_normal_flip");
 
-	edbm_extrude_edges_indiv(em, op, BM_ELEM_SELECT, false);
+	edbm_extrude_edges_indiv(em, op, BM_ELEM_SELECT, use_normal_flip);
 
 	EDBM_update_generic(em, true, true);



More information about the Bf-blender-cvs mailing list