* Fix some wrong icon names in MESH_MT_vertex_group_specials, they caused errors.

Reported by Uncle_Entity in IRC.
This commit is contained in:
Thomas Dinges 2011-11-26 14:04:33 +00:00
parent fdfd7045eb
commit e07d4aed45

@ -36,9 +36,9 @@ class MESH_MT_vertex_group_specials(Menu):
layout.operator("object.vertex_group_mirror", icon='ARROW_LEFTRIGHT') layout.operator("object.vertex_group_mirror", icon='ARROW_LEFTRIGHT')
layout.operator("object.vertex_group_remove", icon='X', text="Delete All").all = True layout.operator("object.vertex_group_remove", icon='X', text="Delete All").all = True
layout.separator() layout.separator()
layout.operator("object.vertex_group_lock", icon='LOCK', text="Lock All").action = 'SELECT' layout.operator("object.vertex_group_lock", icon='LOCKED', text="Lock All").action = 'SELECT'
layout.operator("object.vertex_group_lock", icon='UNLOCK', text="UnLock All").action = 'DESELECT' layout.operator("object.vertex_group_lock", icon='UNLOCKED', text="UnLock All").action = 'DESELECT'
layout.operator("object.vertex_group_lock", icon='LOCK', text="Lock Invert All").action = 'INVERT' layout.operator("object.vertex_group_lock", icon='LOCKED', text="Lock Invert All").action = 'INVERT'
class MESH_MT_shape_key_specials(Menu): class MESH_MT_shape_key_specials(Menu):