From 4db3eee0d10f45050b2936b9f829fb112ead071a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 14 Oct 2025 15:56:02 +0200 Subject: [PATCH] Fix #148004: Dope Sheet editor playback controls are off by default Enable the Playback Controls (footer region) by default in the Dope Sheet editors. Pull Request: https://projects.blender.org/blender/blender/pulls/148008 --- source/blender/editors/space_action/space_action.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/source/blender/editors/space_action/space_action.cc b/source/blender/editors/space_action/space_action.cc index 4964a1c3dbe..5860917b45b 100644 --- a/source/blender/editors/space_action/space_action.cc +++ b/source/blender/editors/space_action/space_action.cc @@ -87,7 +87,6 @@ static SpaceLink *action_create(const ScrArea *area, const Scene *scene) BLI_addtail(&saction->regionbase, region); region->regiontype = RGN_TYPE_FOOTER; region->alignment = (U.uiflag & USER_HEADER_BOTTOM) ? RGN_ALIGN_TOP : RGN_ALIGN_BOTTOM; - region->flag = RGN_FLAG_HIDDEN; /* channel list region */ region = BKE_area_region_new();