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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-05-29 03:45:50 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-05-29 03:45:50 +0400
commit276a75ae071ac44e813a0b5e499846e752d80b1e (patch)
tree851afc75fdc0f86578e1e487bb8125d4d409c662 /release/ui/space_outliner.py
parentfacb94461665934e3c1bf32a4cfec0c14892ce53 (diff)
UI:
* Added panels with dummy preview template. * Added constraints panel for bones next to objects, though it doesn't work that well yet, the operators and code need to be changed so they don't assume it is one or the other in/out of posemode. * Added some graying out in the scene and world buttons.
Diffstat (limited to 'release/ui/space_outliner.py')
-rw-r--r--release/ui/space_outliner.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/release/ui/space_outliner.py b/release/ui/space_outliner.py
index 12690ff819f..a87b1e21a0f 100644
--- a/release/ui/space_outliner.py
+++ b/release/ui/space_outliner.py
@@ -18,7 +18,6 @@ class OUTLINER_HT_header(bpy.types.Header):
row = layout.row(align=True)
row.itemR(so, "display_mode")
-
class OUTLINER_MT_view(bpy.types.Menu):
__space_type__ = "OUTLINER"
__label__ = "View"
@@ -30,7 +29,6 @@ class OUTLINER_MT_view(bpy.types.Menu):
layout.column()
row.itemR(so, "show_restriction_columns")
#layout.itemO("TEXT_OT_new")
-
bpy.types.register(OUTLINER_HT_header)
bpy.types.register(OUTLINER_MT_view)