[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [46670] trunk/blender/release/scripts/ startup/bl_ui/space_view3d.py: Fix for second part of #31445: Surface " Control Points" menu is empty

Sergey Sharybin sergey.vfx at gmail.com
Tue May 15 17:34:49 CEST 2012


Revision: 46670
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=46670
Author:   nazgul
Date:     2012-05-15 15:34:49 +0000 (Tue, 15 May 2012)
Log Message:
-----------
Fix for second part of #31445: Surface "Control Points" menu is empty

The only difference that it should be Select Linked All operator added to the 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-05-15 15:28:59 UTC (rev 46669)
+++ trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2012-05-15 15:34:49 UTC (rev 46670)
@@ -612,6 +612,7 @@
         layout.operator("curve.select_all", text="Inverse").action = 'INVERT'
         layout.operator("curve.select_random")
         layout.operator("curve.select_nth", text="Every Nth Number of Points")
+        layout.operator("curve.select_linked", text="Select Linked")
 
         layout.separator()
 
@@ -641,6 +642,7 @@
         layout.operator("curve.select_all", text="Inverse").action = 'INVERT'
         layout.operator("curve.select_random")
         layout.operator("curve.select_nth", text="Every Nth Number of Points")
+        layout.operator("curve.select_linked", text="Select Linked")
 
         layout.separator()
 




More information about the Bf-blender-cvs mailing list