Fix T75785: "Extrude Faces Along Normals" throws error

This commit is contained in:
Germano Cavalcante 2020-04-16 10:44:48 -03:00
parent 8a506b9660
commit 816597d6da
Notes: blender-bot 2023-02-14 06:54:28 +01:00
Referenced by issue #75785, "Extrude Faces Along Normals" throws error
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ class VIEW3D_OT_edit_mesh_extrude_shrink_fatten(Operator):
return (obj is not None and obj.mode == 'EDIT')
def execute(self, context):
return VIEW3D_OT_edit_mesh_extrude_move.extrude_region(context, True)
return VIEW3D_OT_edit_mesh_extrude_move.extrude_region(context, True, False)
def invoke(self, context, _event):
return self.execute(context)