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-07-25 02:33:09 +0400
committerThomas Dinges <blender@dingto.org>2009-07-25 02:33:09 +0400
commita93619a8c44d432e93a29f01b65505adee77474a (patch)
tree692b9ce9fb5ec9049b1e50820daeb8362aa7cec2 /release
parenta1403f7fbb65809ac1e7266dcb6a7cf5f8e89451 (diff)
2.5 3DView View Panel:
* Added Lines option. * Made some settings use alignment. Logs: Of course i meant 4-Split in last commit message ;-)
Diffstat (limited to 'release')
-rw-r--r--release/ui/space_view3d.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/release/ui/space_view3d.py b/release/ui/space_view3d.py
index e21d585a14d..c96960eb857 100644
--- a/release/ui/space_view3d.py
+++ b/release/ui/space_view3d.py
@@ -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"