From fe9b909187e205124400ed6473130cbf4eb305e8 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Fri, 30 Dec 2011 21:29:02 +0000 Subject: [PATCH] Fix for Remesh Modifier: * Remesh Icon was missing in the outliner. --- source/blender/editors/space_outliner/outliner_draw.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c index 86031ca7104..f3bab197b3c 100644 --- a/source/blender/editors/space_outliner/outliner_draw.c +++ b/source/blender/editors/space_outliner/outliner_draw.c @@ -1014,6 +1014,8 @@ static void tselem_draw_icon(uiBlock *block, int xmax, float x, float y, TreeSto UI_icon_draw(x, y, ICON_MOD_SOLIDIFY); break; case eModifierType_Screw: UI_icon_draw(x, y, ICON_MOD_SCREW); break; + case eModifierType_Remesh: + UI_icon_draw(x, y, ICON_MOD_REMESH); break; case eModifierType_WeightVGEdit: case eModifierType_WeightVGMix: case eModifierType_WeightVGProximity: