Fix T76917: Auto mirror not working

This commit is contained in:
Vladimir Spivak 2020-05-22 00:14:55 +03:00
parent ea8443d996
commit ee468ba535
Notes: blender-bot 2023-02-14 18:55:34 +01:00
Referenced by issue #76917, Auto mirror not working
1 changed files with 3 additions and 1 deletions

View File

@ -10,7 +10,7 @@ bl_info = {
"name": "Auto Mirror",
"description": "Super fast cutting and mirroring for mesh",
"author": "Lapineige",
"version": (2, 5, 2),
"version": (2, 5, 3),
"blender": (2, 80, 0),
"location": "View 3D > Sidebar > Edit Tab > AutoMirror (panel)",
"warning": "",
@ -139,6 +139,8 @@ class AutoMirror(bpy.types.Operator):
return v2-v1
def execute(self, context):
context.active_object.select_set(True)
automirror = context.scene.automirror
X,Y,Z = 0,0,0