Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-08-25 22:18:30 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-08-25 22:18:30 +0400
commit2bb8bb9ba02410f84ada26edb7929b1646e22284 (patch)
tree0ea530d00675d9d70320b3f17c0707f3a6030c87 /development_api_navigator.py
parent011ec6b0a523ed95468158a27009d6375ddd2926 (diff)
bl_options was a string when it shouldn't have been.
Diffstat (limited to 'development_api_navigator.py')
-rw-r--r--development_api_navigator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/development_api_navigator.py b/development_api_navigator.py
index a814e936..6e7079af 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