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:
authorJoshua Leung <aligorith@gmail.com>2012-10-04 14:58:03 +0400
committerJoshua Leung <aligorith@gmail.com>2012-10-04 14:58:03 +0400
commitd2833d9f0f1daa25f359e034b10bb4234c68a47d (patch)
treea60329815c8aeab9c14ba75e39092c22fe8e7917 /release
parenta273d45a5dbe75fd312897632717cd707dd2c017 (diff)
Added convenience operator to clear animation (i.e. all keyframes = F-Curves)
from selected objects and bones
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 1786c19ebdf..a77c5818fca 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -807,7 +807,8 @@ class VIEW3D_MT_object_animation(Menu):
layout = self.layout
layout.operator("anim.keyframe_insert_menu", text="Insert Keyframe...")
- layout.operator("anim.keyframe_delete_v3d", text="Delete Keyframe...")
+ layout.operator("anim.keyframe_delete_v3d", text="Delete Keyframes...")
+ layout.operator("anim.keyframe_clear_v3d", text="Clear Keyframes...")
layout.operator("anim.keying_set_active_set", text="Change Keying Set...")
layout.separator()