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:
authorMatt Ebb <matt@mke3.net>2009-05-05 06:24:58 +0400
committerMatt Ebb <matt@mke3.net>2009-05-05 06:24:58 +0400
commit08df158672184a5459d517cc8841a66a92a07bce (patch)
treea2fbf1ad050c71345409cd1018d6bba809d25e11 /source/blender/editors/space_outliner
parentb753d6fd2da339b0b80888036a1e3787501ebf77 (diff)
* More icon updates, thanks to Jendryzch. That's all the modifiers now, I think!
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/space_outliner/outliner.c b/source/blender/editors/space_outliner/outliner.c
index fc25f4c0bf9..ae986d71258 100644
--- a/source/blender/editors/space_outliner/outliner.c
+++ b/source/blender/editors/space_outliner/outliner.c
@@ -3595,6 +3595,10 @@ static void tselem_draw_icon(float x, float y, TreeStoreElem *tselem, TreeElemen
UI_icon_draw(x, y, ICON_MOD_EXPLODE); break;
case eModifierType_Collision:
UI_icon_draw(x, y, ICON_MOD_PHYSICS); break;
+ case eModifierType_Fluidsim:
+ UI_icon_draw(x, y, ICON_MOD_FLUIDSIM); break;
+ case eModifierType_Multires:
+ UI_icon_draw(x, y, ICON_MOD_MULTIRES); break;
default:
UI_icon_draw(x, y, ICON_DOT); break;
}