From 06ec60f5199021ff0d58fc407a889c9c81f8fd3a Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sat, 26 Sep 2020 16:53:58 -0700 Subject: [PATCH] Panel experiment --- sound_objects/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sound_objects/__init__.py b/sound_objects/__init__.py index 6ee8d32..4d65252 100644 --- a/sound_objects/__init__.py +++ b/sound_objects/__init__.py @@ -19,9 +19,10 @@ class SoundObjectAttachmentPanel(bpy.types.Panel): bl_idname = "OBJECT_PT_sound_object_attachment_panel" bl_space_type = "VIEW_3D" bl_label = "Attach Sounds" - bl_region_type = "TOOLS" - #bl_category = "Tool" + bl_region_type = "UI" + bl_category = "Tools" bl_context = "object" + bl_options = {"DEFAULT_CLOSED"} def draw(self, context): self.layout.label(text="Attach Sounds")