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:
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 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):