From c58de2f632e78fc8241e2eb30ab952ea777af71c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 16 Aug 2018 20:23:15 +1000 Subject: [PATCH] UI: add redo panel to clip editor --- source/blender/editors/space_clip/space_clip.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/blender/editors/space_clip/space_clip.c b/source/blender/editors/space_clip/space_clip.c index 24033b4f468..79e1dc35245 100644 --- a/source/blender/editors/space_clip/space_clip.c +++ b/source/blender/editors/space_clip/space_clip.c @@ -1619,4 +1619,8 @@ void ED_spacetype_clip(void) art->draw = clip_channels_region_draw; BLI_addhead(&st->regiontypes, art); + + /* regions: hud */ + art = ED_area_type_hud(st->spaceid); + BLI_addhead(&st->regiontypes, art); }