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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrendon Murphy <meta.androcto1@gmail.com>2012-06-01 10:11:29 +0400
committerBrendon Murphy <meta.androcto1@gmail.com>2012-06-01 10:11:29 +0400
commit18d402585392a5cff0b73fb423b52fa7fbed4beb (patch)
treebbf2e512a7d1388ee2d9adb392f807263e19d75a
parent8cb3ba478c5ad7c4d5cc55bcac030944540e50c0 (diff)
fix for icon error in mat to texface
-rw-r--r--space_view3d_materials_utils.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/space_view3d_materials_utils.py b/space_view3d_materials_utils.py
index 3f49b30d..e35fcc83 100644
--- a/space_view3d_materials_utils.py
+++ b/space_view3d_materials_utils.py
@@ -630,14 +630,14 @@ class VIEW3D_MT_master_material(bpy.types.Menu):
layout.menu("VIEW3D_MT_select_material", icon='HAND')
layout.separator()
layout.operator("view3d.clean_material_slots",
- text='Clean Material Slots',
+ text="Clean Material Slots",
icon='CANCEL')
layout.operator("view3d.material_to_texface",
- text='Material to Texface',
- icon='polygonsEL_HLT')
+ text="Material to Texface",
+ icon='MATERIAL_DATA')
layout.operator("view3d.texface_to_material",
text="Texface to Material",
- icon='polygonsEL_HLT')
+ icon='MATERIAL_DATA')
layout.separator()
layout.operator("view3d.replace_material",