Merge branch 'blender-v2.93-release'

This commit is contained in:
Philipp Oeser 2021-04-20 10:06:30 +02:00
commit 2efd3509ee
1 changed files with 5 additions and 0 deletions

View File

@ -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);
}