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-13 18:14:28 +0300
committerSergey Sharybin <sergey@blender.org>2022-05-13 18:18:25 +0300
commita80ad0a54578d6e92695dced22538bdca3c8e1a7 (patch)
tree748b479579585a806ce0e7dfdaa9a51b7c062453 /source/blender/editors/space_clip/clip_intern.h
parent4680331749aa716fe01445c473308f3ff80ec8c9 (diff)
Refactor: Use coordinate in API for track selection
Currently no functional changes. Prepares for a change which will allow to more consistently redo the track selection operator.
Diffstat (limited to 'source/blender/editors/space_clip/clip_intern.h')
-rw-r--r--source/blender/editors/space_clip/clip_intern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_clip/clip_intern.h b/source/blender/editors/space_clip/clip_intern.h
index 8e1df133189..ec3d098e68f 100644
--- a/source/blender/editors/space_clip/clip_intern.h
+++ b/source/blender/editors/space_clip/clip_intern.h
@@ -190,7 +190,7 @@ void clip_draw_sfra_efra(struct View2D *v2d, struct Scene *scene);
/* Find track which can be slid in a proximity of the given event.
* Uses the same rules w.r.t distance tolerances for track sliding and selection operators. */
struct MovieTrackingTrack *tracking_find_slidable_track_in_proximity(struct bContext *C,
- const struct wmEvent *event);
+ const float co[2]);
void CLIP_OT_add_marker(struct wmOperatorType *ot);
void CLIP_OT_add_marker_at_click(struct wmOperatorType *ot);