From 1b83b9c8b09bf56a029d11d5cae2d7dea56bb785 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Fri, 8 Jan 2010 10:11:04 +0000 Subject: [PATCH] Fix: *WORLD_PT_custom_props missed COMPAT_ENGINES declaration. --- release/scripts/ui/properties_world.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/release/scripts/ui/properties_world.py b/release/scripts/ui/properties_world.py index e488265d76d..c4eaa049ce6 100644 --- a/release/scripts/ui/properties_world.py +++ b/release/scripts/ui/properties_world.py @@ -71,6 +71,7 @@ class WORLD_PT_context_world(WorldButtonsPanel): class WORLD_PT_custom_props(WorldButtonsPanel, PropertyPanel): + COMPAT_ENGINES = {'BLENDER_RENDER'} _context_path = "world" @@ -238,4 +239,4 @@ bpy.types.register(WORLD_PT_ambient_occlusion) bpy.types.register(WORLD_PT_mist) bpy.types.register(WORLD_PT_stars) -bpy.types.register(WORLD_PT_custom_props) +bpy.types.register(WORLD_PT_custom_props) \ No newline at end of file