From 9c2d3a8ed19fede220195172b51f0b6dee7d90c8 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Sun, 12 Feb 2012 19:57:47 +0000 Subject: 2.6 UI Modifier Icons: * New Ocean Icon, created by Leon Cheung. Thanks! Approved by Lukas and myself. * New Warp Icon, created by "Zafio" Blender artists Thread where the Icons come from: http://blenderartists.org/forum/showthread.php?243354-Call-for-Modifier-Icons! --- source/blender/editors/space_outliner/outliner_draw.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source/blender/editors/space_outliner') diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c index 942e1024c05..e40732804f7 100644 --- a/source/blender/editors/space_outliner/outliner_draw.c +++ b/source/blender/editors/space_outliner/outliner_draw.c @@ -1023,7 +1023,9 @@ static void tselem_draw_icon(uiBlock *block, int xmax, float x, float y, TreeSto case eModifierType_DynamicPaint: UI_icon_draw(x, y, ICON_MOD_DYNAMICPAINT); break; case eModifierType_Ocean: - UI_icon_draw(x, y, ICON_MOD_WAVE); break; + UI_icon_draw(x, y, ICON_MOD_OCEAN); break; + case eModifierType_Warp: + UI_icon_draw(x, y, ICON_MOD_WARP); break; default: UI_icon_draw(x, y, ICON_DOT); break; } -- cgit v1.2.3