From 4193cb4f1764ba1f5c404d7649b42059eb819d35 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Thu, 25 Sep 2025 12:16:32 +0200 Subject: [PATCH] UI: Rename animation footers to Playback Controls Rename the menu item "Footer" in Animation/VSE to "Playback Controls". This only affects the menu item label under `View`, in the following editors: * Dope Sheet * Graph Editor * NLA Editor * Sequencer The name "footer" has issues: * It's not descriptive of what it does/contains. * It can be moved to the top, so no longer a footer. * When used in other editors, it may contain different things so it is unexpected what to find in it. See PR for screenshots. Pull Request: https://projects.blender.org/blender/blender/pulls/146727 --- scripts/startup/bl_ui/space_dopesheet.py | 2 +- scripts/startup/bl_ui/space_graph.py | 2 +- scripts/startup/bl_ui/space_nla.py | 2 +- scripts/startup/bl_ui/space_sequencer.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/startup/bl_ui/space_dopesheet.py b/scripts/startup/bl_ui/space_dopesheet.py index d0f5d41daf6..1a248bdca79 100644 --- a/scripts/startup/bl_ui/space_dopesheet.py +++ b/scripts/startup/bl_ui/space_dopesheet.py @@ -406,7 +406,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.prop(st, "show_region_footer") + layout.prop(st, "show_region_footer", text="Playback Controls") layout.separator() layout.operator("action.view_selected") diff --git a/scripts/startup/bl_ui/space_graph.py b/scripts/startup/bl_ui/space_graph.py index e1ac4307ea3..f31b3ae26f4 100644 --- a/scripts/startup/bl_ui/space_graph.py +++ b/scripts/startup/bl_ui/space_graph.py @@ -213,7 +213,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.prop(st, "show_region_footer") + layout.prop(st, "show_region_footer", text="Playback Controls") layout.separator() layout.operator("graph.view_selected") diff --git a/scripts/startup/bl_ui/space_nla.py b/scripts/startup/bl_ui/space_nla.py index 30ef53c3190..3a5589ea9ce 100644 --- a/scripts/startup/bl_ui/space_nla.py +++ b/scripts/startup/bl_ui/space_nla.py @@ -124,7 +124,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.prop(st, "show_region_footer") + layout.prop(st, "show_region_footer", text="Playback Controls") layout.separator() layout.operator("nla.view_selected") diff --git a/scripts/startup/bl_ui/space_sequencer.py b/scripts/startup/bl_ui/space_sequencer.py index 60c12e296fd..812cdfcd256 100644 --- a/scripts/startup/bl_ui/space_sequencer.py +++ b/scripts/startup/bl_ui/space_sequencer.py @@ -492,7 +492,7 @@ class SEQUENCER_MT_view(Menu): layout.prop(st, "show_region_hud") if is_sequencer_only: layout.prop(st, "show_region_channels") - layout.prop(st, "show_region_footer") + layout.prop(st, "show_region_footer", text="Playback Controls") layout.separator() if is_preview: