[Bf-blender-cvs] [d035e5a] master: Fix T38698: In the Mask tab the Insert Key and Clear Key button labels are switched

Sergey Sharybin noreply at git.blender.org
Tue Feb 18 13:57:17 CET 2014


Commit: d035e5ac9d47bd27fe33f2d442853cf419d8ffbb
Author: Sergey Sharybin
Date:   Tue Feb 18 18:56:27 2014 +0600
https://developer.blender.org/rBd035e5ac9d47bd27fe33f2d442853cf419d8ffbb

Fix T38698: In the Mask tab the Insert Key and Clear Key button labels are switched

===================================================================

M	release/scripts/startup/bl_ui/properties_mask_common.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/properties_mask_common.py b/release/scripts/startup/bl_ui/properties_mask_common.py
index c38173c..4af311d 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")




More information about the Bf-blender-cvs mailing list