From 8496162cef9b6bf9112882d76911d49adb028465 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 15 May 2012 15:34:49 +0000 Subject: 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 --- release/scripts/startup/bl_ui/space_view3d.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py index 530e77d2b68..0b2ae6fe3b6 100644 --- a/release/scripts/startup/bl_ui/space_view3d.py +++ b/release/scripts/startup/bl_ui/space_view3d.py @@ -612,6 +612,7 @@ class VIEW3D_MT_select_edit_curve(Menu): 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 @@ class VIEW3D_MT_select_edit_surface(Menu): 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() -- cgit v1.2.3