2.5 3DView View Panel:

* Added Lines option.
* Made some settings use alignment. 

Logs: Of course i meant 4-Split in last commit message ;-)
This commit is contained in:
Thomas Dinges 2009-07-24 22:33:09 +00:00
parent a1403f7fbb
commit a93619a8c4

@ -116,14 +116,18 @@ class VIEW3D_PT_3dview_properties(bpy.types.Panel):
col.itemR(view, "camera")
col.itemR(view, "lens")
col.itemL(text="Clip:")
layout.itemL(text="Clip:")
col = layout.column(align=True)
col.itemR(view, "clip_start", text="Start")
col.itemR(view, "clip_end", text="End")
col.itemL(text="Grid:")
layout.itemL(text="Grid:")
col = layout.column(align=True)
col.itemR(view, "grid_lines", text="Lines")
col.itemR(view, "grid_spacing", text="Spacing")
col.itemR(view, "grid_subdivisions", text="Subdivisions")
col.itemR(scene, "cursor_location", text="3D Cursor:")
layout.column().itemR(scene, "cursor_location", text="3D Cursor:")
class VIEW3D_PT_3dview_display(bpy.types.Panel):
__space_type__ = "VIEW_3D"