Fix T61637: Edge extrude always uses normal orientation

This commit is contained in:
Campbell Barton 2019-02-27 02:05:18 +11:00
parent 34c7dbdd7d
commit b64856f308
Notes: blender-bot 2023-02-14 06:42:53 +01:00
Referenced by issue #61637, Edge Extrude and Move aligns to normal axis when middle click axis select
1 changed files with 4 additions and 2 deletions

View File

@ -101,8 +101,10 @@ class VIEW3D_OT_edit_mesh_extrude_move(Operator):
bpy.ops.mesh.extrude_region_move(
'INVOKE_REGION_WIN',
TRANSFORM_OT_translate={
"constraint_orientation": 'NORMAL',
# not a popular choice, too restrictive for retopo.
# Don't set the constraint axis since users will expect MMB
# to use the user setting, see: T61637
# "constraint_orientation": 'NORMAL',
# Not a popular choice, too restrictive for retopo.
# "constraint_axis": (True, True, False)})
"constraint_axis": (False, False, False),
})