Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2012-02-12 23:57:47 +0400
committerThomas Dinges <blender@dingto.org>2012-02-12 23:57:47 +0400
commit9c2d3a8ed19fede220195172b51f0b6dee7d90c8 (patch)
treea0117a4b4624ea7db712006bda39df9c4060ac65 /source/blender/editors/space_outliner
parentf7c032b7653101e72585985985b0865d018a7cd7 (diff)
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!
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.c4
1 files changed, 3 insertions, 1 deletions
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;
}