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:
authorCampbell Barton <ideasman42@gmail.com>2011-01-24 16:19:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-24 16:19:05 +0300
commit2275bac468132a9e3b82e3b2d1138a86e4294a86 (patch)
tree207158bb4a2bd0f307f16ced540fe7fd6c9b7a10 /space_view3d_materials_utils.py
parent52efcbc744959deb4c36e2c723b63d8cc49e946d (diff)
changes Operator names for new, stricter checking.
Diffstat (limited to 'space_view3d_materials_utils.py')
-rw-r--r--space_view3d_materials_utils.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/space_view3d_materials_utils.py b/space_view3d_materials_utils.py
index 0c832d43..1e149c2e 100644
--- a/space_view3d_materials_utils.py
+++ b/space_view3d_materials_utils.py
@@ -487,7 +487,7 @@ def texface_to_mat():
class VIEW3D_OT_texface_to_material(bpy.types.Operator):
''''''
- bl_idname = "texface_to_material"
+ bl_idname = "view3d.texface_to_material"
bl_label = "MW Texface Images to Material/Texture"
bl_options = {'REGISTER', 'UNDO'}
@@ -505,7 +505,7 @@ class VIEW3D_OT_texface_to_material(bpy.types.Operator):
class VIEW3D_OT_assign_material(bpy.types.Operator):
'''assign a material to the selection'''
- bl_idname = "assign_material"
+ bl_idname = "view3d.assign_material"
bl_label = "MW Assign Material"
bl_options = {'REGISTER', 'UNDO'}
@@ -528,7 +528,7 @@ class VIEW3D_OT_assign_material(bpy.types.Operator):
class VIEW3D_OT_clean_material_slots(bpy.types.Operator):
'''removes any material slots from the
selected objects that are not used by the mesh'''
- bl_idname = "clean_material_slots"
+ bl_idname = "view3d.clean_material_slots"
bl_label = "MW Clean Material Slots"
bl_options = {'REGISTER', 'UNDO'}
@@ -542,7 +542,7 @@ class VIEW3D_OT_clean_material_slots(bpy.types.Operator):
class VIEW3D_OT_material_to_texface(bpy.types.Operator):
''''''
- bl_idname = "material_to_texface"
+ bl_idname = "view3d.material_to_texface"
bl_label = "MW Material Images to Texface"
bl_options = {'REGISTER', 'UNDO'}
@@ -556,7 +556,7 @@ class VIEW3D_OT_material_to_texface(bpy.types.Operator):
class VIEW3D_OT_select_material_by_name(bpy.types.Operator):
''''''
- bl_idname = "select_material_by_name"
+ bl_idname = "view3d.select_material_by_name"
bl_label = "MW Select Material By Name"
bl_options = {'REGISTER', 'UNDO'}
matname = StringProperty(name = 'Material Name',
@@ -575,7 +575,7 @@ class VIEW3D_OT_select_material_by_name(bpy.types.Operator):
class VIEW3D_OT_replace_material(bpy.types.Operator):
'''assign a material to the selection'''
- bl_idname = "replace_material"
+ bl_idname = "view3d.replace_material"
bl_label = "MW Replace Material"
bl_options = {'REGISTER', 'UNDO'}