[Bf-blender-cvs] [5a6be7ba723] soc-2017-normal-tools: Fix after last merge.

Bastien Montagne noreply at git.blender.org
Tue Feb 20 12:21:18 CET 2018


Commit: 5a6be7ba7232fe372d00a8f69b637b295f47daf8
Author: Bastien Montagne
Date:   Tue Feb 20 12:21:05 2018 +0100
Branches: soc-2017-normal-tools
https://developer.blender.org/rB5a6be7ba7232fe372d00a8f69b637b295f47daf8

Fix after last merge.

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

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

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

diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 961587ba8fa..e4eb4a5183b 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -6702,7 +6702,7 @@ static int edbm_average_loop_normals_exec(bContext *C, wmOperator *op)
 							count++;
 							val = cur_val;
 						}
-						l = BLI_heap_popmin(loop_weight);
+						l = BLI_heap_pop_min(loop_weight);
 						BLI_SMALLSTACK_PUSH(loops, l);
 
 						float n_weight = pow(weight, count);



More information about the Bf-blender-cvs mailing list