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>2012-01-06 05:14:57 +0400
committerThomas Dinges <blender@dingto.org>2012-01-06 05:14:57 +0400
commitf983fe709d9f4ce01d02e76e689a94eb18188132 (patch)
treec9522b72bd82e82e8ab6f9fc24bc95f206873871 /release
parent4831c9f115cb2d1f98418b39785a7b44a36ad36b (diff)
3DView / Properties Region:
* Simplify UI inside the Transform Orientation Panel.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 58816f8e8be..f49a6bd5155 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2369,13 +2369,14 @@ class VIEW3D_PT_transform_orientations(Panel):
view = context.space_data
orientation = view.current_orientation
- col = layout.column()
- col.prop(view, "transform_orientation")
- col.operator("transform.create_orientation", text="Create")
+ row = layout.row(align=True)
+ row.prop(view, "transform_orientation", text="")
+ row.operator("transform.create_orientation", text="", icon='ZOOMIN')
if orientation:
- col.prop(orientation, "name")
- col.operator("transform.delete_orientation", text="Delete")
+ row = layout.row(align=True)
+ row.prop(orientation, "name", text="")
+ row.operator("transform.delete_orientation", text="", icon="X")
class VIEW3D_PT_etch_a_ton(Panel):