* boundbox display option was missing from object properties

This commit is contained in:
Matt Ebb
2009-09-14 06:31:20 +00:00
parent 894c1e98ad
commit 84e17862cd

View File

@@ -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")