From c499f5120bc16f100ec6d38a661de0ae12c7a0d5 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Sun, 22 Jan 2012 22:30:45 +0000 Subject: Ocean Modifier UI fixes: * Modifier Icon was missing in the outliner * Fluid icon was used in the rna struct, fixed Note: Ocean uses the Wave modifier icon atm, if we find a better one, this can be changed. --- source/blender/editors/space_outliner/outliner_draw.c | 2 ++ 1 file changed, 2 insertions(+) (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 0264cf5ad05..eaa04a1e09e 100644 --- a/source/blender/editors/space_outliner/outliner_draw.c +++ b/source/blender/editors/space_outliner/outliner_draw.c @@ -1022,6 +1022,8 @@ static void tselem_draw_icon(uiBlock *block, int xmax, float x, float y, TreeSto UI_icon_draw(x, y, ICON_MOD_VERTEX_WEIGHT); break; case eModifierType_DynamicPaint: UI_icon_draw(x, y, ICON_MOD_DYNAMICPAINT); break; + case eModifierType_Ocean: + UI_icon_draw(x, y, ICON_MOD_WAVE); break; default: UI_icon_draw(x, y, ICON_DOT); break; } -- cgit v1.2.3