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>2009-05-18 22:20:29 +0400
committerThomas Dinges <blender@dingto.org>2009-05-18 22:20:29 +0400
commit4022380dc6a70b5123282e912743e568a92adde2 (patch)
treeced8d0d88e1f8426a5fa20b92cb12f39cfef2374 /release
parent0cd511eee8039f9c0f59004329cff911693ac761 (diff)
2.5 UI:
* Added new Buttons Tab "Bone" for Armature objects. * Validation of buttons selection, when object selection is changed. * added missing notifier for camera type and small layout change to the panel. * more shading color changes for menu and checkbox.
Diffstat (limited to 'release')
-rw-r--r--release/ui/buttons_data_camera.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/ui/buttons_data_camera.py b/release/ui/buttons_data_camera.py
index 2fac272ada3..24006b5e7cc 100644
--- a/release/ui/buttons_data_camera.py
+++ b/release/ui/buttons_data_camera.py
@@ -68,11 +68,11 @@ class DATA_PT_cameradisplay(DataButtonsPanel):
sub.itemR(cam, "show_mist", text="Mist")
sub.itemR(cam, "show_title_safe", text="Title Safe")
sub.itemR(cam, "show_name", text="Name")
+
+ sub = split.column()
sub.itemR(cam, "show_passepartout", text="Passepartout")
if (cam.show_passepartout):
sub.itemR(cam, "passepartout_alpha", text="Alpha")
-
- sub = split.column()
sub.itemR(cam, "draw_size", text="Size")
bpy.types.register(DATA_PT_cameralens)