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>2010-04-05 15:47:55 +0400
committerJoshua Leung <aligorith@gmail.com>2010-04-05 15:47:55 +0400
commitf5253127217fa89c9c884aacb0cc815b5eee3095 (patch)
tree6586b495eebfaa494d037b47e2ebc79434445ff1 /release/scripts/ui/space_graph.py
parentf5293601522e0314b52c740fa9faef51ebf086b6 (diff)
Animation Editors: Select Linked Operator
This operator selects all the keyframes in the same F-Curve as a selected keyframe.
Diffstat (limited to 'release/scripts/ui/space_graph.py')
-rw-r--r--release/scripts/ui/space_graph.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/release/scripts/ui/space_graph.py b/release/scripts/ui/space_graph.py
index 0106833ce0d..b2a430eb7cd 100644
--- a/release/scripts/ui/space_graph.py
+++ b/release/scripts/ui/space_graph.py
@@ -126,6 +126,9 @@ class GRAPH_MT_select(bpy.types.Menu):
layout.separator()
layout.operator("graph.select_more")
layout.operator("graph.select_less")
+
+ layout.separator()
+ layout.operator("graph.select_linked")
class GRAPH_MT_channel(bpy.types.Menu):