Curves: Add delete operator to edit mode #104765

Merged
Jacques Lucke merged 3 commits from HooglyBoogly/blender:curves-edit-mode-delete into main 2023-02-15 10:50:12 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit a2ae7537b8 - Show all commits

View File

@ -1132,7 +1132,7 @@ static void CURVES_OT_delete(wmOperatorType *ot)
ot->description = "Remove selected control points or curves";
ot->exec = curves_delete::delete_exec;
ot->poll = editable_curves_poll;
ot->poll = editable_curves_in_edit_mode_poll;
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
}