From fbd4dfb2c6435ca095fe64d2fbd76abdb9f550f9 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 20 Nov 2014 02:24:42 +1300 Subject: Graph Editor: H/Shift-H now hide and unhide selected curves (Gooseberry Request) Revised the tools for managing which FCurves are visible in the Graph Editor curves area. Now, there are the following tools in place: * V (channels region only) = Hide all curves except those in selected channels [OLD] * H = Hide all selected curves [NEW] * Shift-H = Show all previously hidden curves [NEW] I've removed the old operator to toggle visibility status of selected curves, as it doesn't seem that useful anymore. --- release/scripts/startup/bl_ui/space_graph.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_graph.py b/release/scripts/startup/bl_ui/space_graph.py index 6fc3d9e4f2b..a8155402a1e 100644 --- a/release/scripts/startup/bl_ui/space_graph.py +++ b/release/scripts/startup/bl_ui/space_graph.py @@ -189,6 +189,8 @@ class GRAPH_MT_channel(Menu): layout.separator() layout.operator("anim.channels_editable_toggle") + layout.operator("graph.hide") + layout.operator("graph.unhide") layout.operator("anim.channels_visibility_set") layout.operator_menu_enum("graph.extrapolation_type", "type", text="Extrapolation Mode") -- cgit v1.2.3