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>2020-11-30 16:13:03 +0300
committerSergey Sharybin <sergey@blender.org>2020-11-30 16:13:34 +0300
commit8dac88b54a68671afee4e77d7038cba915ff0992 (patch)
treec08a149d6d4beb196c70a1fc0da7e951b9ab6355 /source/blender/editors/space_clip
parent9306e01b10cd0cad50179f68fe8c8fed1c86e4a1 (diff)
Tracking: Cleanup, unused field in autotrack context
Was only assigned to truth, always. Never read back.
Diffstat (limited to 'source/blender/editors/space_clip')
-rw-r--r--source/blender/editors/space_clip/tracking_ops_track.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_clip/tracking_ops_track.c b/source/blender/editors/space_clip/tracking_ops_track.c
index 66669527929..585b13b426e 100644
--- a/source/blender/editors/space_clip/tracking_ops_track.c
+++ b/source/blender/editors/space_clip/tracking_ops_track.c
@@ -185,7 +185,7 @@ static bool track_markers_initjob(bContext *C, TrackMarkersJob *tmj, bool backwa
}
}
- tmj->context = BKE_autotrack_context_new(clip, &sc->user, backwards, true);
+ tmj->context = BKE_autotrack_context_new(clip, &sc->user, backwards);
clip->tracking_context = tmj->context;