[Bf-blender-cvs] [4b4114acc4e] soc-2017-normal-tools: Fix missing new weighted normals modifier case in Outliners' drawing code.

Bastien Montagne noreply at git.blender.org
Thu Oct 12 18:20:01 CEST 2017


Commit: 4b4114acc4e6082dde5a7a74ec2cf9ada7bb6218
Author: Bastien Montagne
Date:   Thu Oct 12 18:19:27 2017 +0200
Branches: soc-2017-normal-tools
https://developer.blender.org/rB4b4114acc4e6082dde5a7a74ec2cf9ada7bb6218

Fix missing new weighted normals modifier case in Outliners' drawing code.

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

M	source/blender/editors/space_outliner/outliner_draw.c

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

diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index af6fdf2ab86..bc44a7a6ce7 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -1181,6 +1181,7 @@ static void tselem_draw_icon(uiBlock *block, int xmax, float x, float y, TreeSto
 					case eModifierType_DataTransfer:
 						UI_icon_draw(x, y, ICON_MOD_DATA_TRANSFER); break;
 					case eModifierType_NormalEdit:
+					case eModifierType_WeightedNormal:
 						UI_icon_draw(x, y, ICON_MOD_NORMALEDIT); break;
 					/* Default */
 					case eModifierType_None:



More information about the Bf-blender-cvs mailing list