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-14 05:50:52 +0300
committerJoshua Leung <aligorith@gmail.com>2011-02-14 05:50:52 +0300
commitb8a19d3a43c6b3f6842589344022fe82b3fcf6ea (patch)
treef95dd00e13dd44bcef60d49182b6b746a14827cd /release
parent52525a00f7f83e8349b98ab9824fe92cb41d2e8a (diff)
Graph Editor part of the changes in the previous commit...
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_graph.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/release/scripts/ui/space_graph.py b/release/scripts/ui/space_graph.py
index 55c4d4cfd94..6bc47ffce86 100644
--- a/release/scripts/ui/space_graph.py
+++ b/release/scripts/ui/space_graph.py
@@ -130,6 +130,10 @@ class GRAPH_MT_select(bpy.types.Menu):
layout.operator("graph.select_column", text="Between Selected Markers").mode = 'MARKERS_BETWEEN'
layout.separator()
+ layout.operator("graph.select_leftright", text="Before Current Frame").mode = 'LEFT'
+ layout.operator("graph.select_leftright", text="After Current Frame").mode = 'RIGHT'
+
+ layout.separator()
layout.operator("graph.select_more")
layout.operator("graph.select_less")