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-03-11 18:18:34 +0300
committerWilliam Reynish <billrey@me.com>2019-03-11 18:18:34 +0300
commit2703c405a4d8fee9c8f867cd02e603d0070b2ba5 (patch)
treed3b97fcdf21b870e1f70c7019c5146c66d75997e
parent81d5f15a2a71eaa7c506b0b87706059b9c48d23a (diff)
UI: Add missing transform operators to Transform menu
- Consistent with other editors and modes - Allows users to discover G R S keys Maniphest task: T61556
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 3b62ed1dbc3..34f828d7638 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -400,6 +400,12 @@ class VIEW3D_MT_transform_base(Menu):
def draw(self, context):
layout = self.layout
+ layout.operator("transform.translate")
+ layout.operator("transform.rotate")
+ layout.operator("transform.resize", text="Scale")
+
+ layout.separator()
+
layout.operator("transform.tosphere", text="To Sphere")
layout.operator("transform.shear", text="Shear")
layout.operator("transform.bend", text="Bend")