Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-05-15 19:34:49 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-05-15 19:34:49 +0400
commit8496162cef9b6bf9112882d76911d49adb028465 (patch)
tree65a3ac537a5c376679d8c2932d88f6719001e3be
parentfbea5692ea7c42565dca9d2cb095bfd3f6842a1a (diff)
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
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py2
1 files changed, 2 insertions, 0 deletions
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()