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:
authorMatt Ebb <matt@mke3.net>2009-09-14 10:31:20 +0400
committerMatt Ebb <matt@mke3.net>2009-09-14 10:31:20 +0400
commit84e17862cd02b0ad018a0269bcfce623a9eae417 (patch)
tree575a7e2e4a23ef1589ef2d938d50eab85b61b4ee
parent894c1e98ad398d3970ea928c0a9db8f34e5dbef4 (diff)
* boundbox display option was missing from object properties
-rw-r--r--release/ui/buttons_object.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/release/ui/buttons_object.py b/release/ui/buttons_object.py
index af2c7cfb58a..9e043cfeaf3 100644
--- a/release/ui/buttons_object.py
+++ b/release/ui/buttons_object.py
@@ -92,10 +92,14 @@ class OBJECT_PT_display(ObjectButtonsPanel):
layout = self.layout
ob = context.object
-
- row = layout.row()
- row.itemR(ob, "max_draw_type", text="Type")
- row.itemR(ob, "draw_bounds_type", text="Bounds")
+
+ split = layout.split()
+ col = split.column()
+ col.itemR(ob, "max_draw_type", text="Type")
+ col = split.column()
+ row = col.row()
+ row.itemR(ob, "draw_bounds", text="Bounds")
+ row.itemR(ob, "draw_bounds_type", text="")
flow = layout.column_flow()
flow.itemR(ob, "draw_name", text="Name")