[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [25902] trunk/blender/release/scripts/ui/ properties_data_mesh.py: Fix wrong icons in shape key panel, not sure why these were specified,

Brecht Van Lommel brecht at blender.org
Mon Jan 11 16:28:00 CET 2010


Revision: 25902
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=25902
Author:   blendix
Date:     2010-01-11 16:28:00 +0100 (Mon, 11 Jan 2010)

Log Message:
-----------
Fix wrong icons in shape key panel, not sure why these were specified,
they're already defined in RNA.

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

Modified: trunk/blender/release/scripts/ui/properties_data_mesh.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_mesh.py	2010-01-11 14:23:16 UTC (rev 25901)
+++ trunk/blender/release/scripts/ui/properties_data_mesh.py	2010-01-11 15:28:00 UTC (rev 25902)
@@ -207,8 +207,8 @@
             sub = row.row(align=True)
             subsub = sub.row(align=True)
             subsub.active = enable_edit_value
-            subsub.prop(ob, "shape_key_lock", icon='PINNED' if ob.shape_key_lock else 'UNPINNED', text="")
-            subsub.prop(kb, "mute", icon='MUTE_IPO_ON' if kb.mute else 'MUTE_IPO_OFF', text="")
+            subsub.prop(ob, "shape_key_lock", text="")
+            subsub.prop(kb, "mute", text="")
             sub.prop(ob, "shape_key_edit_mode", text="")
 
             sub = row.row(align=True)





More information about the Bf-blender-cvs mailing list