Skip to content
Snippets Groups Projects
Commit 245d0134 authored by meta-androcto's avatar meta-androcto
Browse files

system addons, close panels by default: T70017

parent 96c695fe
No related branches found
No related tags found
No related merge requests found
......@@ -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 = []
......
......@@ -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/"
......
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment