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-05-22 22:20:07 +0400
committerThomas Dinges <blender@dingto.org>2012-05-22 22:20:07 +0400
commitfc4d5cf37ee426c1dd0f00938759a42c5adc2778 (patch)
treeada1272472f588e020796c76e15902e08af50310 /source/blender/editors
parent800e79c0888215c545a2ce01badea2402a1670ca (diff)
Skin Modifier:
* Show Modifier Icon in Outliner.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index 7813bbcd9a6..3662cfb4e3f 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -1009,6 +1009,8 @@ static void tselem_draw_icon(uiBlock *block, int xmax, float x, float y, TreeSto
UI_icon_draw(x, y, ICON_MOD_OCEAN); break;
case eModifierType_Warp:
UI_icon_draw(x, y, ICON_MOD_WARP); break;
+ case eModifierType_Skin:
+ UI_icon_draw(x, y, ICON_MOD_SKIN); break;
default:
UI_icon_draw(x, y, ICON_DOT); break;
}