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
diff options
context:
space:
mode:
authorSergey Sharybin <sergey@blender.org>2022-05-12 18:15:18 +0300
committerSergey Sharybin <sergey@blender.org>2022-05-12 18:20:54 +0300
commitb24f204e91265891da04fbfe42d4b42650a4967a (patch)
tree5644d4fb906ea9a0d30f62e2ad180d07b9473682 /source/blender/editors/space_clip/tracking_ops.c
parentccd18691fcc6441bf1c53956c931b1148b37d3f3 (diff)
Cleanup: Clarify function name and comment logic
This is a bit tricky exceptional case, which originates to an original motion tracking commit. Took a while to remember what it is ab out so here is a comment for the future developers.
Diffstat (limited to 'source/blender/editors/space_clip/tracking_ops.c')
-rw-r--r--source/blender/editors/space_clip/tracking_ops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_clip/tracking_ops.c b/source/blender/editors/space_clip/tracking_ops.c
index 260f56dfe9f..239e9925997 100644
--- a/source/blender/editors/space_clip/tracking_ops.c
+++ b/source/blender/editors/space_clip/tracking_ops.c
@@ -655,8 +655,8 @@ static MovieTrackingTrack *tracking_marker_check_slide(
return NULL;
}
-struct MovieTrackingTrack *tracking_find_track_in_proximity(struct bContext *C,
- const struct wmEvent *event)
+struct MovieTrackingTrack *tracking_find_slidable_track_in_proximity(struct bContext *C,
+ const struct wmEvent *event)
{
return tracking_marker_check_slide(C, event, NULL, NULL, NULL);
}