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:
authorPablo Vazquez <venomgfx@gmail.com>2018-05-16 13:03:22 +0300
committerPablo Vazquez <venomgfx@gmail.com>2018-05-16 13:03:53 +0300
commit9bcddeca7a23f2a1faf49c597e906213bf539b36 (patch)
treefe3283e490a787d2c34ed5aa7753bdfaf03ba455 /release/scripts/startup/bl_ui/space_topbar.py
parentb6a822d72623d12efd51bd9444710857f3a45159 (diff)
Popover for Pivot Point in top bar
From T55038
Diffstat (limited to 'release/scripts/startup/bl_ui/space_topbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_topbar.py40
1 files changed, 36 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index 719396ccdd1..ad3ff075a52 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -197,11 +197,18 @@ class TOPBAR_HT_lower_bar(Header):
object_mode = 'OBJECT' if obj is None else obj.mode
- # Pivit & Orientation
+ # Pivot & Orientation
+ pivot_point = context.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.prop(toolsettings, "transform_pivot_point", text="", icon_only=True)
- if (obj is None) or (mode in {'OBJECT', 'POSE', 'WEIGHT_PAINT'}):
- row.prop(toolsettings, "use_transform_pivot_point_align", text="")
+ row.popover(
+ space_type='TOPBAR',
+ region_type='HEADER',
+ panel_type="TOPBAR_PT_pivot_point",
+ icon=act_pivot_point.icon,
+ text=""
+ )
layout.prop(scene, "transform_orientation", text="")
@@ -331,6 +338,30 @@ class _draw_left_context_mode:
UnifiedPaintPanel.prop_unified_strength(layout, context, brush, "strength", slider=True, text="Strength")
+class TOPBAR_PT_pivot_point(Panel):
+ bl_space_type = 'TOPBAR'
+ bl_region_type = 'HEADER'
+ bl_label = "Pivot Point"
+
+ def draw(self, context):
+ toolsettings = context.tool_settings
+ obj = context.active_object
+ mode = context.mode
+
+ layout = self.layout
+ col = layout.column()
+ col.label(text="Pivot Point")
+ col.prop(toolsettings, "transform_pivot_point", expand=True)
+
+ layout.separator()
+
+ if (obj is None) or (mode in {'OBJECT', 'POSE', 'WEIGHT_PAINT'}):
+ layout.prop(
+ toolsettings,
+ "use_transform_pivot_point_align",
+ text="Center Points Only")
+
+
class INFO_MT_editor_menus(Menu):
bl_idname = "INFO_MT_editor_menus"
bl_label = ""
@@ -597,6 +628,7 @@ class INFO_MT_help(Menu):
classes = (
TOPBAR_HT_upper_bar,
TOPBAR_HT_lower_bar,
+ TOPBAR_PT_pivot_point,
INFO_MT_editor_menus,
INFO_MT_file,
INFO_MT_file_import,