Doc: minor change to curve select more/less

Address T55218
This commit is contained in:
Campbell Barton 2020-06-17 18:07:53 +10:00
parent 1dfd262f2d
commit 7dae6eb5a2
Notes: blender-bot 2023-02-14 05:49:01 +01:00
Referenced by issue #77974, Sculpting: glitches after undoing a Dyntopo stroke
Referenced by issue #77953, Crash when switching to Wireframe
Referenced by issue #55218, Curve deselection won't work if the selection included end control points
1 changed files with 2 additions and 2 deletions

View File

@ -988,7 +988,7 @@ void CURVE_OT_select_more(wmOperatorType *ot)
/* identifiers */
ot->name = "Select More";
ot->idname = "CURVE_OT_select_more";
ot->description = "Select control points directly linked to already selected ones";
ot->description = "Select control points at the boundary of each selection region";
/* api callbacks */
ot->exec = curve_select_more_exec;
@ -1203,7 +1203,7 @@ void CURVE_OT_select_less(wmOperatorType *ot)
/* identifiers */
ot->name = "Select Less";
ot->idname = "CURVE_OT_select_less";
ot->description = "Reduce current selection by deselecting boundary elements";
ot->description = "Deselect control points at the boundary of each selection region";
/* api callbacks */
ot->exec = curve_select_less_exec;