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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2010-02-15 04:22:34 +0300
committerThomas Dinges <blender@dingto.org>2010-02-15 04:22:34 +0300
commitfece4fd610c1e19642d7ee65cbe26f6ee49fa8ff (patch)
tree877c49f6341e847715621b72eead90fd242b2b2d /release
parent677386e53a079a10e0c965759156f298471409ca (diff)
Bugfix for the new script register functions, scene tab didn't show Panels due to missing classes.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_scene.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/release/scripts/ui/properties_scene.py b/release/scripts/ui/properties_scene.py
index dc7c24b2b37..abd656ad805 100644
--- a/release/scripts/ui/properties_scene.py
+++ b/release/scripts/ui/properties_scene.py
@@ -331,6 +331,15 @@ class ANIM_OT_keying_set_export(bpy.types.Operator):
classes = [
+ SCENE_PT_scene,
+ SCENE_PT_unit,
+ SCENE_PT_keying_sets,
+ SCENE_PT_keying_set_paths,
+ SCENE_PT_physics,
+ SCENE_PT_simplify,
+
+ SCENE_PT_custom_props,
+
ANIM_OT_keying_set_export]