From 2bb8bb9ba02410f84ada26edb7929b1646e22284 Mon Sep 17 00:00:00 2001 From: Campbell Barton <ideasman42@gmail.com> Date: Thu, 25 Aug 2011 18:18:30 +0000 Subject: [PATCH] bl_options was a string when it shouldn't have been. --- development_api_navigator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development_api_navigator.py b/development_api_navigator.py index a814e9368..6e7079afb 100644 --- a/development_api_navigator.py +++ b/development_api_navigator.py @@ -464,7 +464,7 @@ class OBJECT_PT_api_navigator(ApiNavigator, bpy.types.Panel): bl_space_type = "TEXT_EDITOR" bl_region_type = "UI" bl_label = "API Navigator" - bl_options = "DEFAULT_CLOSED" + bl_options = {'DEFAULT_CLOSED'} columns = 3 -- GitLab