We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 959ccfa commit e2ad8ffCopy full SHA for e2ad8ff
blender/addons/mifth_tools/mifth_tools.py
@@ -303,7 +303,7 @@ def execute(self, context):
303
scene = bpy.context.scene
304
mifthTools = scene.mifthTools
305
306
- if len(bpy.context.selected_objects) > 1:
+ if len(bpy.context.selected_objects):
307
objAct = scene.objects.active
308
morfIndex = 1
309
@@ -313,7 +313,9 @@ def execute(self, context):
313
basisKey.name = 'Basis'
314
315
for obj in bpy.context.selected_objects:
316
- if obj != objAct:
+ if len(bpy.context.selected_objects) > 1 and obj == objAct:
317
+ pass
318
+ else:
319
if len(obj.data.vertices) == len(objAct.data.vertices):
320
shapeKey = objAct.shape_key_add(from_mix=False)
321
0 commit comments