Curves: Add select linked #104569

Merged
Falk David merged 5 commits from filedescriptor/blender:curves-select-linked into main 2023-02-10 18:58:10 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 04451212dd - Show all commits

View File

@ -1002,7 +1002,7 @@ static void CURVES_OT_select_linked(wmOperatorType *ot)
{
ot->name = "Select Linked";
ot->idname = __func__;
ot->description = "Select linked points of curves";
ot->description = "Select all points in curves with any point selection";
filedescriptor marked this conversation as resolved
Review

Best to avoid reusing the word "linked" in the description. How about Select all points in curves with any point selection?

Best to avoid reusing the word "linked" in the description. How about `Select all points in curves with any point selection`?
ot->exec = select_linked_exec;
ot->poll = editable_curves_point_domain_poll;