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:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_graph.py')
-rw-r--r--release/scripts/startup/bl_ui/space_graph.py12
1 files changed, 3 insertions, 9 deletions
diff --git a/release/scripts/startup/bl_ui/space_graph.py b/release/scripts/startup/bl_ui/space_graph.py
index f97969d3b43..d668bb7ec25 100644
--- a/release/scripts/startup/bl_ui/space_graph.py
+++ b/release/scripts/startup/bl_ui/space_graph.py
@@ -75,11 +75,6 @@ class GRAPH_HT_header(Header):
layout.prop(st, "pivot_point", icon_only=True)
- row = layout.row(align=True)
- row.operator("graph.copy", text="", icon='COPYDOWN')
- row.operator("graph.paste", text="", icon='PASTEDOWN')
- row.operator("graph.paste", text="", icon='PASTEFLIPDOWN').flipped = True
-
class GRAPH_PT_filters(DopesheetFilterPopoverBase, Panel):
bl_space_type = 'GRAPH_EDITOR'
@@ -277,6 +272,9 @@ class GRAPH_MT_key(Menu):
layout.operator("graph.frame_jump")
layout.separator()
+ layout.operator("graph.copy")
+ layout.operator("graph.paste")
+ layout.operator("graph.paste", text="Paste Flipped").flipped = True
layout.operator("graph.duplicate_move")
layout.operator("graph.delete")
@@ -293,10 +291,6 @@ class GRAPH_MT_key(Menu):
layout.operator("graph.bake")
layout.separator()
- layout.operator("graph.copy")
- layout.operator("graph.paste")
-
- layout.separator()
layout.operator("graph.euler_filter", text="Discontinuity (Euler) Filter")