From bd7b8bbeaf4d7570878cceac0175bf35acac48bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 28 Jul 2025 15:59:54 +0200 Subject: [PATCH] Shape Keys: expand tooltip of Make Basis Key operator Expand the tooltip of the "Make Shape Key the Basis Key" to clarify that the chosen shape key will be applied at 100%, and not at the current blend value. Pull Request: https://projects.blender.org/blender/blender/pulls/143466 Pull Request: https://projects.blender.org/blender/blender/pulls/143466 --- source/blender/editors/object/object_shapekey.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/object/object_shapekey.cc b/source/blender/editors/object/object_shapekey.cc index f43d91b927a..e1f5aaf41a6 100644 --- a/source/blender/editors/object/object_shapekey.cc +++ b/source/blender/editors/object/object_shapekey.cc @@ -901,7 +901,9 @@ void OBJECT_OT_shape_key_make_basis(wmOperatorType *ot) /* identifiers */ ot->name = "Make Shape Key the Basis Key"; ot->idname = "OBJECT_OT_shape_key_make_basis"; - ot->description = "Make this shape key the new basis key, effectively applying it to the mesh"; + ot->description = + "Make this shape key the new basis key, effectively applying it to the mesh. Note that this " + "applies the shape key at its 100% value"; /* API callbacks. */ ot->poll = shape_key_make_basis_poll;