[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [50760] trunk/blender/release/scripts/ startup/bl_ui/space_view3d.py: Fix #32601: armature select similar missing from select menu.

Brecht Van Lommel brechtvanlommel at pandora.be
Thu Sep 20 02:10:29 CEST 2012


Revision: 50760
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=50760
Author:   blendix
Date:     2012-09-20 00:10:26 +0000 (Thu, 20 Sep 2012)
Log Message:
-----------
Fix #32601: armature select similar missing from select menu.

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

Modified: trunk/blender/release/scripts/startup/bl_ui/space_view3d.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2012-09-19 23:55:12 UTC (rev 50759)
+++ trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2012-09-20 00:10:26 UTC (rev 50760)
@@ -583,7 +583,7 @@
         if context.scene.tool_settings.mesh_select_mode[2] == False:
             layout.operator("mesh.select_non_manifold", text="Non Manifold")
         layout.operator("mesh.select_loose_verts", text="Loose Verts/Edges")
-        layout.operator("mesh.select_similar", text="Similar")
+        layout.operator_menu_enum("mesh.select_similar", "type", text="Similar")
 
         layout.separator()
 
@@ -722,6 +722,7 @@
         props.extend = True
         props.direction = 'CHILD'
 
+        layout.operator_menu_enum("armature.select_similar", "type", text="Similar")
         layout.operator("object.select_pattern", text="Select Pattern...")
 
 




More information about the Bf-blender-cvs mailing list