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>2011-12-31 01:29:02 +0400
committerThomas Dinges <blender@dingto.org>2011-12-31 01:29:02 +0400
commitfe9b909187e205124400ed6473130cbf4eb305e8 (patch)
treeb6a57bb66a92e4d747ec1893a0d95dd1063e9a3c /source/blender/editors
parent289c8b575872ab49d7d16b742af0e5f56f7282eb (diff)
Fix for Remesh Modifier:
* Remesh Icon was missing in the 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 86031ca7104..f3bab197b3c 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -1014,6 +1014,8 @@ static void tselem_draw_icon(uiBlock *block, int xmax, float x, float y, TreeSto
UI_icon_draw(x, y, ICON_MOD_SOLIDIFY); break;
case eModifierType_Screw:
UI_icon_draw(x, y, ICON_MOD_SCREW); break;
+ case eModifierType_Remesh:
+ UI_icon_draw(x, y, ICON_MOD_REMESH); break;
case eModifierType_WeightVGEdit:
case eModifierType_WeightVGMix:
case eModifierType_WeightVGProximity: