[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [57993] trunk/blender/release/scripts/ startup/bl_ui/properties_data_mesh.py: Fix #35994: shape key mirror without topology did not properly work after

Brecht Van Lommel brechtvanlommel at pandora.be
Thu Jul 4 13:37:32 CEST 2013


Revision: 57993
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57993
Author:   blendix
Date:     2013-07-04 11:37:32 +0000 (Thu, 04 Jul 2013)
Log Message:
-----------
Fix #35994: shape key mirror without topology did not properly work after
doing mirror with topology.

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	2013-07-04 11:28:52 UTC (rev 57992)
+++ trunk/blender/release/scripts/startup/bl_ui/properties_data_mesh.py	2013-07-04 11:37:32 UTC (rev 57993)
@@ -33,7 +33,7 @@
         layout.operator("object.vertex_group_copy", icon='COPY_ID')
         layout.operator("object.vertex_group_copy_to_linked", icon='LINK_AREA')
         layout.operator("object.vertex_group_copy_to_selected", icon='LINK_AREA')
-        layout.operator("object.vertex_group_mirror", icon='ARROW_LEFTRIGHT')
+        layout.operator("object.vertex_group_mirror", icon='ARROW_LEFTRIGHT').use_topology = False
         layout.operator("object.vertex_group_mirror", text="Mirror Vertex Group (Topology)", icon='ARROW_LEFTRIGHT').use_topology = True
         layout.operator("object.vertex_group_remove_from", icon='X', text="Remove from All Groups").use_all_groups = True
         layout.operator("object.vertex_group_remove_from", icon='X', text="Clear Active Group").use_all_verts = True
@@ -53,7 +53,7 @@
 
         layout.operator("object.shape_key_transfer", icon='COPY_ID')  # icon is not ideal
         layout.operator("object.join_shapes", icon='COPY_ID')  # icon is not ideal
-        layout.operator("object.shape_key_mirror", icon='ARROW_LEFTRIGHT')
+        layout.operator("object.shape_key_mirror", icon='ARROW_LEFTRIGHT').use_topology = False
         layout.operator("object.shape_key_mirror", text="Mirror Shape Key (Topology)", icon='ARROW_LEFTRIGHT').use_topology = True
         layout.operator("object.shape_key_add", icon='ZOOMIN', text="New Shape From Mix").from_mix = True
         layout.operator("object.shape_key_remove", icon='X', text="Delete All Shapes").all = True




More information about the Bf-blender-cvs mailing list