From d035e5ac9d47bd27fe33f2d442853cf419d8ffbb Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 18 Feb 2014 18:56:27 +0600 Subject: [PATCH] Fix T38698: In the Mask tab the Insert Key and Clear Key button labels are switched --- release/scripts/startup/bl_ui/properties_mask_common.py | 4 ++-- 1 file 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")