From 2142e9e7fca4b3209c6dd7640e9fb0391c9a45aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 21 Jun 2019 14:29:49 +0200 Subject: [PATCH] Attract fix for Blender 2.80 panel change Commit 1e7c3a159fd2ca42fd5688be067008ef0d2c03df removed the 'Info' panel (which is good), so we have to attach the metadata subpanel somewhere else. --- blender_cloud/attract/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blender_cloud/attract/__init__.py b/blender_cloud/attract/__init__.py index 8286d49..86e427f 100644 --- a/blender_cloud/attract/__init__.py +++ b/blender_cloud/attract/__init__.py @@ -948,7 +948,7 @@ class ATTRACT_OT_project_open_in_browser(Operator): class ATTRACT_PT_strip_metadata(bl_ui.space_sequencer.SequencerButtonsPanel, Panel): bl_label = "Metadata" - bl_parent_id = "SEQUENCER_PT_info" + bl_parent_id = "SEQUENCER_PT_source" bl_category = "Strip" bl_options = {'DEFAULT_CLOSED'}