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:
authorCampbell Barton <ideasman42@gmail.com>2010-12-14 13:17:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-12-14 13:17:13 +0300
commit58f31f8a5d52ec8d043ae92a249804216f626fda (patch)
tree95fc0afa6d4e2104f03437a5ec97203e475b1e6c /release
parent996bc87793ebb6ad2b347c8e5fce1f2987607c58 (diff)
Change set handle types back to menu now menus have key access - V+A, V+V, V+L, V+F
for Graph & Edit Curve view. Editcurve can be Hkey for hide again.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_info.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py
index 1aebe51e0d2..8d440c0a02d 100644
--- a/release/scripts/ui/space_info.py
+++ b/release/scripts/ui/space_info.py
@@ -250,18 +250,6 @@ class INFO_MT_surface_add(bpy.types.Menu):
layout.operator("surface.primitive_nurbs_surface_sphere_add", icon='SURFACE_NSPHERE', text="NURBS Sphere")
layout.operator("surface.primitive_nurbs_surface_torus_add", icon='SURFACE_NTORUS', text="NURBS Torus")
-class INFO_MT_curve_handle_type_set(bpy.types.Menu):
- bl_idname = "INFO_MT_curve_handle_type_set"
- bl_label = "Handle Type"
-
- def draw(self, context):
- layout = self.layout
- layout.operator_context = 'INVOKE_REGION_WIN'
- layout.operator("curve.handle_type_set", text="Automatic").type = "AUTOMATIC"
- layout.operator("curve.handle_type_set", text="Vector").type = "VECTOR"
- layout.operator("curve.handle_type_set", text="Align").type = "ALIGN"
- layout.operator("curve.handle_type_set", text="Free Align").type = "FREE_ALIGN"
-
class INFO_MT_armature_add(bpy.types.Menu):
bl_idname = "INFO_MT_armature_add"