From eac8925134559641562a40e5dd26d890de129b19 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Wed, 19 Feb 2020 17:24:28 +1100 Subject: [PATCH] Minor UI clean-up to hide panels by default --- src/ifcblenderexport/blenderbim/ui.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ifcblenderexport/blenderbim/ui.py b/src/ifcblenderexport/blenderbim/ui.py index e549bf0050..7852dd13e3 100644 --- a/src/ifcblenderexport/blenderbim/ui.py +++ b/src/ifcblenderexport/blenderbim/ui.py @@ -349,6 +349,7 @@ class BIM_PT_owner(Panel): class BIM_PT_context(Panel): bl_label = "Geometric Representation Contexts" bl_idname = "BIM_PT_context" + bl_options = {'DEFAULT_CLOSED'} bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' bl_context = "scene" @@ -547,6 +548,7 @@ class BIM_PT_qa(Panel): class BIM_PT_library(Panel): bl_label = "BIM Server Library" bl_idname = "BIM_PT_library" + bl_options = {'DEFAULT_CLOSED'} bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' bl_context = "scene" @@ -571,6 +573,7 @@ class BIM_PT_library(Panel): class BIM_PT_diff(Panel): bl_label = "IFC Diff" bl_idname = "BIM_PT_diff" + bl_options = {'DEFAULT_CLOSED'} bl_space_type = 'PROPERTIES' bl_region_type = 'WINDOW' bl_context = "scene"