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:
authorPhilipp Oeser <info@graphics-engineer.com>2021-04-20 11:06:30 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2021-04-20 11:06:30 +0300
commit2efd3509eec5d56478fd09590e45a618c6f77f7c (patch)
tree359419c4c51bf944716ecf176174af91fc049bad
parent8c0f7d17725d1f8700718dab19c368a5ab5fe8d4 (diff)
parentdb0b1cab1f8c2798d5f088b98f4055987a19796e (diff)
Merge branch 'blender-v2.93-release'
-rw-r--r--source/blender/editors/space_action/space_action.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/editors/space_action/space_action.c b/source/blender/editors/space_action/space_action.c
index 722005235d3..f6af2f79890 100644
--- a/source/blender/editors/space_action/space_action.c
+++ b/source/blender/editors/space_action/space_action.c
@@ -301,6 +301,11 @@ static void action_header_region_init(wmWindowManager *UNUSED(wm), ARegion *regi
static void action_header_region_draw(const bContext *C, ARegion *region)
{
+ /* The anim context is not actually used, but this makes sure the action being displayed is up to
+ * date. */
+ bAnimContext ac;
+ ANIM_animdata_get_context(C, &ac);
+
ED_region_header(C, region);
}