[Bf-blender-cvs] [4c8aa61be2b] blender-v2.79a-release: No groping in Blender's Tracker!

Sebastian Koenig noreply at git.blender.org
Mon Jan 8 17:24:09 CET 2018


Commit: 4c8aa61be2bbb13a7474cf76ee91c7859f32f2f5
Author: Sebastian Koenig
Date:   Mon Jan 8 14:11:43 2018 +0100
Branches: blender-v2.79a-release
https://developer.blender.org/rB4c8aa61be2bbb13a7474cf76ee91c7859f32f2f5

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

===================================================================

M	source/blender/editors/space_clip/tracking_select.c

===================================================================

diff --git a/source/blender/editors/space_clip/tracking_select.c b/source/blender/editors/space_clip/tracking_select.c
index e970b1b9743..df7576487e6 100644
--- a/source/blender/editors/space_clip/tracking_select.c
+++ b/source/blender/editors/space_clip/tracking_select.c
@@ -909,7 +909,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);
@@ -992,7 +992,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 */



More information about the Bf-blender-cvs mailing list