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:
authorCampbell Barton <ideasman42@gmail.com>2012-01-08 17:09:09 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-01-08 17:09:09 +0400
commit98bdf0274b1052efe25b6216f488d2a40fa43d1c (patch)
tree71e65d918ccbf3c5addd8236c74362dfbdea466c /release/scripts/startup/bl_ui/space_view3d.py
parentda84f3d4c94cb539f2ed80c8ec57602c05b95560 (diff)
parent3dead22c7322cf72ee63a003ba50940abc12e7c9 (diff)
svn merge ^/trunk/blender -r43183:43220
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d.py')
-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 48cab834787..9fad8a61d68 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2370,13 +2370,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):