From 245d0134cfed3351360d8fe6e36af71140809950 Mon Sep 17 00:00:00 2001 From: meta-androcto <meta.androcto1@gmail.com> Date: Tue, 24 Sep 2019 16:57:50 +1000 Subject: [PATCH] system addons, close panels by default: T70017 --- system_blend_info.py | 1 + system_demo_mode/__init__.py | 2 +- system_property_chart.py | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/system_blend_info.py b/system_blend_info.py index 63fbee5a6..e49748e35 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 b07da919a..dee808a2f 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 7f44f89d0..1aefb6438 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" -- GitLab