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>2010-02-07 13:04:18 +0300
committerThomas Dinges <blender@dingto.org>2010-02-07 13:04:18 +0300
commit6920a0cc1dac513f78da5cb721aacc6f0427a0d4 (patch)
tree20158c38a952524353a5679524818cbc7a677ddd /source/blender/editors/space_outliner
parentd8c7f743abfdc91a198fdac9b780ff4d9d66e3c8 (diff)
Outliner:
Modifier Icons for Smoke and Solidify were missing.
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 3e0604b1f25..f2f044216b8 100644
--- a/source/blender/editors/space_outliner/outliner.c
+++ b/source/blender/editors/space_outliner/outliner.c
@@ -4206,6 +4206,10 @@ static void tselem_draw_icon(uiBlock *block, int xmax, float x, float y, TreeSto
UI_icon_draw(x, y, ICON_MOD_FLUIDSIM); break;
case eModifierType_Multires:
UI_icon_draw(x, y, ICON_MOD_MULTIRES); break;
+ case eModifierType_Smoke:
+ UI_icon_draw(x, y, ICON_MOD_SMOKE); break;
+ case eModifierType_Solidify:
+ UI_icon_draw(x, y, ICON_MOD_SOLIDIFY); break;
default:
UI_icon_draw(x, y, ICON_DOT); break;
}