[Bf-extensions-cvs] [ee468ba5] master: Fix T76917: Auto mirror not working

Vladimir Spivakcwolf3d noreply at git.blender.org
Thu May 21 23:15:32 CEST 2020


Commit: ee468ba535022efc699309aaa29659e52cb4aa35
Author: Vladimir Spivak(cwolf3d)
Date:   Fri May 22 00:14:55 2020 +0300
Branches: master
https://developer.blender.org/rBAee468ba535022efc699309aaa29659e52cb4aa35

Fix T76917: Auto mirror not working

===================================================================

M	mesh_auto_mirror.py

===================================================================

diff --git a/mesh_auto_mirror.py b/mesh_auto_mirror.py
index 8c21ccfa..1d89d4e7 100644
--- a/mesh_auto_mirror.py
+++ b/mesh_auto_mirror.py
@@ -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



More information about the Bf-extensions-cvs mailing list