From 4e7a7e613ac2af9bbc1cb2a7b8f3b7f0bd6e164a Mon Sep 17 00:00:00 2001 From: Falk David Date: Thu, 16 Feb 2023 17:47:04 +0100 Subject: [PATCH] Cleanup: Fix operator description --- source/blender/editors/curves/intern/curves_ops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/curves/intern/curves_ops.cc b/source/blender/editors/curves/intern/curves_ops.cc index 924d1cfe09d..a05ecfcaed3 100644 --- a/source/blender/editors/curves/intern/curves_ops.cc +++ b/source/blender/editors/curves/intern/curves_ops.cc @@ -1027,7 +1027,7 @@ static void CURVES_OT_select_more(wmOperatorType *ot) { ot->name = "Select More"; ot->idname = __func__; - ot->description = "Grow the selection by one point."; + ot->description = "Grow the selection by one point"; ot->exec = select_more_exec; ot->poll = editable_curves_point_domain_poll;