From 12a6059f8a485a0124f98d89cc38cbc98fd35008 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Wed, 20 Feb 2019 18:56:26 +0100 Subject: [PATCH] UI: Use checkbox for shape keys 'mute'. Muting functions as enable/disable toggle, it's not viewport-only. --- source/blender/makesrna/intern/rna_key.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/makesrna/intern/rna_key.c b/source/blender/makesrna/intern/rna_key.c index e14ed5aee0a..80d6ca1ca15 100644 --- a/source/blender/makesrna/intern/rna_key.c +++ b/source/blender/makesrna/intern/rna_key.c @@ -894,8 +894,8 @@ static void rna_def_keyblock(BlenderRNA *brna) prop = RNA_def_property(srna, "mute", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", KEYBLOCK_MUTE); - RNA_def_property_ui_text(prop, "Mute", "Mute this shape key"); - RNA_def_property_ui_icon(prop, ICON_HIDE_OFF, -1); + RNA_def_property_ui_text(prop, "Mute", "Toggle this shape key"); + RNA_def_property_ui_icon(prop, ICON_CHECKBOX_HLT, -1); RNA_def_property_update(prop, 0, "rna_Key_update_data"); prop = RNA_def_property(srna, "slider_min", PROP_FLOAT, PROP_NONE);