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>2018-05-12 15:54:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-12 15:56:07 +0300
commit90b2e4ce284e77e5422f672ded258c139e35af10 (patch)
tree3a9f5de2f3346b20b8c9ad31bcce423980a16e31 /release/scripts/startup/bl_ui/space_topbar.py
parentb4010005de36c37797f6f8416b8c3a32703e152f (diff)
UI: move orientation to the topbar
Move manipulator toggle to overlay popover.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_topbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_topbar.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index 0b22d1baaee..9c98df00850 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -194,6 +194,10 @@ class TOPBAR_HT_lower_bar(Header):
elif mode == 'PARTICLE':
layout.popover_group(space_type='VIEW_3D', region_type='TOOLS', context=".particlemode", category="")
+ # 3D View Options, tsk. maybe users aren't always using 3D view?
+ scene = context.scene
+ layout.prop(scene, "transform_orientation", text="", icon='MANIPUL')
+
# Command Settings (redo)
op = context.active_operator
row = layout.row()