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>2011-02-01 14:54:05 +0300
committerJoshua Leung <aligorith@gmail.com>2011-02-01 14:54:05 +0300
commit86f3ba24e4bc5f01b1730d1b48b74b6ce4c659fd (patch)
tree6855de37c4cb0ba105af5b755f94081c032ebf9e /release
parentf4dcc2ffe104370de81126a186410606a676e8c6 (diff)
Bugfix: Graph Editor menus were missing an entry for the "Smooth
Keyframes" operator Probably this was missed off, since the DopeSheet doesn't have this functionality
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_graph.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/ui/space_graph.py b/release/scripts/ui/space_graph.py
index 6a311409137..51c5ebcfbf8 100644
--- a/release/scripts/ui/space_graph.py
+++ b/release/scripts/ui/space_graph.py
@@ -213,6 +213,7 @@ class GRAPH_MT_key(bpy.types.Menu):
layout.separator()
layout.operator("graph.clean")
+ layout.operator("graph.smooth")
layout.operator("graph.sample")
layout.operator("graph.bake")