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
This commit is contained in:
Sybren A. Stüvel
2025-07-28 15:59:54 +02:00
committed by Gitea
parent abb0c49870
commit bd7b8bbeaf

View File

@@ -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;