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;