From d675e886d40d658906027044d3703003ceeb7a67 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 14 Jan 2025 17:55:22 +1100 Subject: [PATCH] Docs: mention U/V direction cycling in curve select-row description --- source/blender/editors/curve/editcurve_select.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/curve/editcurve_select.cc b/source/blender/editors/curve/editcurve_select.cc index 14eb1eeb18e..494dd06c8e4 100644 --- a/source/blender/editors/curve/editcurve_select.cc +++ b/source/blender/editors/curve/editcurve_select.cc @@ -811,7 +811,9 @@ void CURVE_OT_select_row(wmOperatorType *ot) /* identifiers */ ot->name = "Select Control Point Row"; ot->idname = "CURVE_OT_select_row"; - ot->description = "Select a row of control points including active one"; + ot->description = + "Select a row of control points including active one. " + "Successive use on the same point switches between U/V directions"; /* api callbacks */ ot->exec = select_row_exec;