diff --git a/source/blender/editors/object/interface_template_shape_key_tree.cc b/source/blender/editors/object/interface_template_shape_key_tree.cc index b94e816b0df..e76c8eb7968 100644 --- a/source/blender/editors/object/interface_template_shape_key_tree.cc +++ b/source/blender/editors/object/interface_template_shape_key_tree.cc @@ -217,6 +217,9 @@ class ShapeKeyItem : public ui::AbstractTreeViewItem { sub->prop(&shapekey_ptr, "mute", UI_ITEM_R_ICON_ONLY, std::nullopt, ICON_NONE); sub->prop(&shapekey_ptr, "lock_shape", UI_ITEM_R_ICON_ONLY, std::nullopt, ICON_NONE); + if (shape_key_.kb->flag & KEYBLOCK_MUTE) { + row.active_set(false); + } } std::optional should_be_active() const override