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:
authorWilliam Reynish <billrey@me.com>2019-02-26 22:24:40 +0300
committerWilliam Reynish <billrey@me.com>2019-02-26 22:24:40 +0300
commit92766fb96519594290d370f2a3bed7accd26c472 (patch)
tree95611119b5f7d1fe1124ac7c6d68b0a8ca12dddb /release/scripts/startup/bl_ui/space_view3d.py
parent4d9697a5a90de08d30de373cf6dc83f8130fffdc (diff)
UI: Move Pivot next to Orientation in header
-The pivot point and orientation of any transform are strongly related -It matches the comma-key and period-key on the keyboard who are neighbours -We get slightly nicer grouping this way, with the two axis-related options on the left and the two toggles on the right Reviewers: pablovazquez, campbellbarton Differential Revision: https://developer.blender.org/D4413
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py21
1 files changed, 11 insertions, 10 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index e73b2538bee..19e9c3f8041 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -144,6 +144,17 @@ class VIEW3D_HT_header(Header):
icon_value=trans_icon,
)
+ # Pivot
+ if object_mode in {'OBJECT', 'EDIT', 'POSE', 'EDIT_GPENCIL', 'SCULPT_GPENCIL'}:
+ pivot_point = tool_settings.transform_pivot_point
+ act_pivot_point = bpy.types.ToolSettings.bl_rna.properties["transform_pivot_point"].enum_items[pivot_point]
+ row = layout.row(align=True)
+ row.popover(
+ panel="VIEW3D_PT_pivot_point",
+ icon=act_pivot_point.icon,
+ text="",
+ )
+
# Snap
show_snap = False
if obj is None:
@@ -218,16 +229,6 @@ class VIEW3D_HT_header(Header):
sub.active = tool_settings.proportional_edit != 'DISABLED'
sub.prop(tool_settings, "proportional_edit_falloff", icon_only=True)
- # Pivot
- if object_mode in {'OBJECT', 'EDIT', 'POSE', 'EDIT_GPENCIL', 'SCULPT_GPENCIL'}:
- pivot_point = tool_settings.transform_pivot_point
- act_pivot_point = bpy.types.ToolSettings.bl_rna.properties["transform_pivot_point"].enum_items[pivot_point]
- row = layout.row(align=True)
- row.popover(
- panel="VIEW3D_PT_pivot_point",
- icon=act_pivot_point.icon,
- text="",
- )
# grease pencil
if object_mode == 'PAINT_GPENCIL':
origin = tool_settings.gpencil_stroke_placement_view3d