From 063a7f217be43718a69f6cbcfcf322ca71bdeeb0 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 18 Feb 2011 08:47:37 +0000 Subject: python api docs & examples for registrable Menu/Panel/Operator/PropertyGroup classes. --- release/scripts/modules/bpy_types.py | 2 +- release/scripts/ui/properties_material.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'release') diff --git a/release/scripts/modules/bpy_types.py b/release/scripts/modules/bpy_types.py index bfe7d17fb3a..234627cd98a 100644 --- a/release/scripts/modules/bpy_types.py +++ b/release/scripts/modules/bpy_types.py @@ -674,7 +674,7 @@ class _GenericUI: @classmethod def append(cls, draw_func): - """Prepend an draw function to this menu, takes the same arguments as the menus draw function.""" + """Append a draw function to this menu, takes the same arguments as the menus draw function.""" draw_funcs = cls._dyn_ui_initialize() draw_funcs.append(draw_func) diff --git a/release/scripts/ui/properties_material.py b/release/scripts/ui/properties_material.py index a531f1c5453..750a068b09b 100644 --- a/release/scripts/ui/properties_material.py +++ b/release/scripts/ui/properties_material.py @@ -348,7 +348,7 @@ class MATERIAL_PT_shading(MaterialButtonsPanel, bpy.types.Panel): class MATERIAL_PT_transp(MaterialButtonsPanel, bpy.types.Panel): bl_label = "Transparency" - bl_options = {'DEFAULT_CLOSED'} + # bl_options = {'DEFAULT_CLOSED'} COMPAT_ENGINES = {'BLENDER_RENDER'} @classmethod -- cgit v1.2.3