diff --git a/shape_key_tools/__init__.py b/shape_key_tools/__init__.py index 091b29c..f8d2738 100644 --- a/shape_key_tools/__init__.py +++ b/shape_key_tools/__init__.py @@ -11,7 +11,7 @@ bl_info = { "name": "Shape Key Tools", "author": "TiberiumFusion", - "version": (2, 2, 1, 1), + "version": (2, 2, 1, 2), "blender": (2, 78, 0), # This is a guess... I think it was 2.77 or 2.78 that added some of the operators/api we need. Definitely no earlier than 2.75, since that is when support for custom icons was added. "location": "View3D (Object Mode) > Tool Shelf > Tools > Shape Key Tools", "description": "Tools for working with shape keys beyond Blender's limited abilities.", diff --git a/shape_key_tools/common.py b/shape_key_tools/common.py index 417491f..451499c 100644 --- a/shape_key_tools/common.py +++ b/shape_key_tools/common.py @@ -504,7 +504,7 @@ def MergeAndBlendShapeKeys(obj, shapeKey1Name, shapeKey2Name, destination, blend # Divide elif (blendMode == "divide"): - newDelta = lowerDelta * upperDelta + newDelta = lowerDelta / upperDelta # Overwrite elif (blendMode == "over"):