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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-02-18 16:56:27 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-02-18 16:57:09 +0400
commitd035e5ac9d47bd27fe33f2d442853cf419d8ffbb (patch)
tree54e70d512c391949cc2d13e32f0317a9f039f927 /release/scripts/startup/bl_ui/properties_mask_common.py
parentdcdb4eaf9cce1f3ff84bbe221ebafd20c2371541 (diff)
Fix T38698: In the Mask tab the Insert Key and Clear Key button labels are switched
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_mask_common.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_mask_common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_mask_common.py b/release/scripts/startup/bl_ui/properties_mask_common.py
index c38173c29b1..4af311dc159 100644
--- a/release/scripts/startup/bl_ui/properties_mask_common.py
+++ b/release/scripts/startup/bl_ui/properties_mask_common.py
@@ -286,8 +286,8 @@ class MASK_PT_tools():
col = layout.column(align=True)
col.label(text="Animation:")
row = col.row(align=True)
- row.operator("mask.shape_key_clear", text="Insert Key")
- row.operator("mask.shape_key_insert", text="Clear Key")
+ row.operator("mask.shape_key_insert", text="Insert Key")
+ row.operator("mask.shape_key_clear", text="Clear Key")
col.operator("mask.shape_key_feather_reset", text="Reset Feather Animation")
col.operator("mask.shape_key_rekey", text="Re-Key Shape Points")