No groping in Blender's Tracker!

This a small cleanup of something which I think is just a typo anyway.

With all the recent talks of harrassment and groping, I think we better avoid
that within our source code! :)

Reviewers: sergey

Reviewed By: sergey

Tags: #motion_tracking

Differential Revision: https://developer.blender.org/D2979
This commit is contained in:
Sebastian Koenig 2018-01-08 14:11:43 +01:00 committed by Sergey Sharybin
parent 3ee2ed3049
commit c8a989d644
Notes: blender-bot 2023-06-21 19:23:24 +02:00
Referenced by issue #53683, 2.79a release
1 changed files with 2 additions and 2 deletions

View File

@ -906,7 +906,7 @@ void CLIP_OT_select_all(wmOperatorType *ot)
/********************** select grouped operator *********************/
static int select_groped_exec(bContext *C, wmOperator *op)
static int select_grouped_exec(bContext *C, wmOperator *op)
{
SpaceClip *sc = CTX_wm_space_clip(C);
MovieClip *clip = ED_space_clip_get_clip(sc);
@ -989,7 +989,7 @@ void CLIP_OT_select_grouped(wmOperatorType *ot)
ot->idname = "CLIP_OT_select_grouped";
/* api callbacks */
ot->exec = select_groped_exec;
ot->exec = select_grouped_exec;
ot->poll = ED_space_clip_tracking_poll;
/* flags */