diff --git a/system_blend_info.py b/system_blend_info.py index 63fbee5a6228b6b369dcd31b1c3d5752751fab55..e49748e358fde4954521d11ce690af799cc816b9 100644 --- a/system_blend_info.py +++ b/system_blend_info.py @@ -62,6 +62,7 @@ class OBJECT_PT_blendinfo(bpy.types.Panel): bl_space_type = "PROPERTIES" bl_region_type = "WINDOW" bl_context = "scene" + bl_options = {'DEFAULT_CLOSED'} def draw(self, context): ob_cols = [] diff --git a/system_demo_mode/__init__.py b/system_demo_mode/__init__.py index b07da919aede1eca62bd77c0769b20c5366bb257..dee808a2f7fc25b8209dc3bb41e2792eb3ac6bbf 100644 --- a/system_demo_mode/__init__.py +++ b/system_demo_mode/__init__.py @@ -22,7 +22,7 @@ bl_info = { "name": "Demo Mode", "author": "Campbell Barton", "blender": (2, 80, 0), - "location": "Demo Menu", + "location": "File > Demo Menu", "description": "Demo mode lets you select multiple blend files and loop over them.", "warning": "", "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/" diff --git a/system_property_chart.py b/system_property_chart.py index 7f44f89d0182ce414292d6b41473a7f8d27715ad..1aefb6438141f5d0c215264993db8973cf6e85c5 100644 --- a/system_property_chart.py +++ b/system_property_chart.py @@ -192,6 +192,7 @@ class View3DEditProps(Panel): bl_category = "Item" bl_label = "Property Chart" bl_context = "objectmode" + bl_options = {'DEFAULT_CLOSED'} _PROP_STORAGE_ID = "view3d_edit_props" _PROP_STORAGE_ID_DESCR = "Properties of objects in the context" @@ -210,6 +211,7 @@ class SequencerEditProps(Panel): bl_region_type = 'UI' bl_category = "Item" bl_label = "Property Chart" + bl_options = {'DEFAULT_CLOSED'} _PROP_STORAGE_ID = "sequencer_edit_props" _PROP_STORAGE_ID_DESCR = "Properties of sequencer strips in the context"