[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [42170] trunk/blender/release/scripts/ startup/bl_ui/properties_data_mesh.py: * Fix some wrong icon names in MESH_MT_vertex_group_specials, they caused errors.

Thomas Dinges blender at dingto.org
Sat Nov 26 15:04:47 CET 2011


Revision: 42170
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=42170
Author:   dingto
Date:     2011-11-26 14:04:33 +0000 (Sat, 26 Nov 2011)
Log Message:
-----------
* Fix some wrong icon names in MESH_MT_vertex_group_specials, they caused errors.
Reported by Uncle_Entity in IRC. 

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_ui/properties_data_mesh.py

Modified: trunk/blender/release/scripts/startup/bl_ui/properties_data_mesh.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/properties_data_mesh.py	2011-11-26 13:11:55 UTC (rev 42169)
+++ trunk/blender/release/scripts/startup/bl_ui/properties_data_mesh.py	2011-11-26 14:04:33 UTC (rev 42170)
@@ -36,9 +36,9 @@
         layout.operator("object.vertex_group_mirror", icon='ARROW_LEFTRIGHT')
         layout.operator("object.vertex_group_remove", icon='X', text="Delete All").all = True
         layout.separator()
-        layout.operator("object.vertex_group_lock", icon='LOCK', 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='LOCK', text="Lock Invert All").action = 'INVERT'
+        layout.operator("object.vertex_group_lock", icon='LOCKED', text="Lock All").action = 'SELECT'
+        layout.operator("object.vertex_group_lock", icon='UNLOCKED', text="UnLock All").action = 'DESELECT'
+        layout.operator("object.vertex_group_lock", icon='LOCKED', text="Lock Invert All").action = 'INVERT'
 
 
 class MESH_MT_shape_key_specials(Menu):




More information about the Bf-blender-cvs mailing list