Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorSebastian Koenig <sebastiankoenig@posteo.de>2018-01-08 16:11:43 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-01-08 16:12:15 +0300
commitc8a989d644896a5aa169d1c1686262a28b4c2869 (patch)
tree23ff25191dc379b68c7b036bf286b4777f572e53 /source
parent3ee2ed3049b9860c03084876bd96641b2f1cf5f4 (diff)
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
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_clip/tracking_select.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_clip/tracking_select.c b/source/blender/editors/space_clip/tracking_select.c
index eddd65475a2..4ee85ace271 100644
--- a/source/blender/editors/space_clip/tracking_select.c
+++ b/source/blender/editors/space_clip/tracking_select.c
@@ -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 */