Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInes Almeida <britalmeida@gmail.com>2019-06-30 21:05:54 +0300
committerInes Almeida <britalmeida@gmail.com>2019-06-30 21:07:17 +0300
commit741967079c393a9eb6babd60c92a716fafa5d3e9 (patch)
treee92318c56d905ab30ef6c8ce17d0c82d34e58f0c /release/scripts/startup/bl_ui/properties_data_mesh.py
parent7c8bf77e1351f5e44b28cb930c3b4c46589bc5ae (diff)
Rename operator 'Join Shapes' to 'Transfer Mix'.
The new name is consistent with the 'Transfer Shape' operator. - Updated the UI descriptions for both transfer operators.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_data_mesh.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_mesh.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_mesh.py b/release/scripts/startup/bl_ui/properties_data_mesh.py
index e4fd09bb5ff..5be0a5dba37 100644
--- a/release/scripts/startup/bl_ui/properties_data_mesh.py
+++ b/release/scripts/startup/bl_ui/properties_data_mesh.py
@@ -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.join_shapes")
- layout.operator("object.shape_key_transfer")
+ layout.operator("object.shape_key_transfer_mix")
+ layout.operator("object.shape_key_transfer_active")
layout.separator()
layout.operator("object.shape_key_remove", icon='X', text="Delete All Shape Keys").all = True
layout.separator()