UI: Add 'Channels' region toggle in animation editors #117837

Merged
Pablo Vazquez merged 1 commits from nickberckley/blender:channels-toggle into main 2024-02-05 12:13:40 +01:00
4 changed files with 4 additions and 0 deletions

View File

@ -377,6 +377,7 @@ class DOPESHEET_MT_view(Menu):
layout.prop(st, "show_region_ui")
layout.prop(st, "show_region_hud")
layout.prop(st, "show_region_channels")
layout.separator()
layout.operator("action.view_selected")

View File

@ -148,6 +148,7 @@ class GRAPH_MT_view(Menu):
layout.prop(st, "show_region_ui")
layout.prop(st, "show_region_hud")
layout.prop(st, "show_region_channels")
layout.separator()
layout.operator("graph.view_selected")

View File

@ -114,6 +114,7 @@ class NLA_MT_view(Menu):
layout.prop(st, "show_region_ui")
layout.prop(st, "show_region_hud")
layout.prop(st, "show_region_channels")
layout.separator()
layout.operator("nla.view_selected")

View File

@ -124,6 +124,7 @@ class TIME_MT_view(Menu):
st = context.space_data
layout.prop(st, "show_region_hud")
layout.prop(st, "show_region_channels")
layout.separator()
# NOTE: "action" now, since timeline is in the dopesheet editor, instead of as own editor