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
This commit is contained in:
William Reynish 2019-03-11 16:18:34 +01:00
parent 81d5f15a2a
commit 2703c405a4
1 changed files with 6 additions and 0 deletions

View File

@ -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")