Revert "Rename operator 'Join Shapes' to 'Transfer Mix'."

This reverts commit 741967079c.
We are in UI and API freeze, and this changes both.
This commit is contained in:
2019-07-01 16:51:00 +02:00
parent 510daea545
commit c6d073f6a4
5 changed files with 17 additions and 16 deletions

View File

@@ -312,9 +312,10 @@ class SubdivisionSet(Operator):
class ShapeTransfer(Operator):
"""Copy the active shape key of another selected object to this one"""
"""Copy another selected objects active shape to this one by """ \
"""applying the relative offsets"""
bl_idname = "object.shape_key_transfer_active"
bl_idname = "object.shape_key_transfer"
bl_label = "Transfer Shape Key"
bl_options = {'REGISTER', 'UNDO'}

View File

@@ -67,8 +67,8 @@ class MESH_MT_shape_key_context_menu(Menu):
layout.operator("object.shape_key_mirror", icon='ARROW_LEFTRIGHT').use_topology = False
layout.operator("object.shape_key_mirror", text="Mirror Shape Key (Topology)").use_topology = True
layout.separator()
layout.operator("object.shape_key_transfer_mix")
layout.operator("object.shape_key_transfer_active")
layout.operator("object.join_shapes")
layout.operator("object.shape_key_transfer")
layout.separator()
layout.operator("object.shape_key_remove", icon='X', text="Delete All Shape Keys").all = True
layout.separator()