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.vfx@gmail.com>2013-09-03 13:18:08 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-09-03 13:18:08 +0400
commit8b40be18d3c4e2ec98cdf26a260554f56fbacdb8 (patch)
treef9dc057b8386a6073de4cebfb5b0fa098d67ca3f /source/blender/blenkernel/intern/tracking.c
parent5d2dd0a3fe8922fc7b4e46e2d0fb151f4a4f962a (diff)
Fix #36643: Clip Editor: undesired Markers created "automatically" while I track my marker
Was a typo from recent commint from my own.
Diffstat (limited to 'source/blender/blenkernel/intern/tracking.c')
-rw-r--r--source/blender/blenkernel/intern/tracking.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/tracking.c b/source/blender/blenkernel/intern/tracking.c
index 093b60536ee..cc946552996 100644
--- a/source/blender/blenkernel/intern/tracking.c
+++ b/source/blender/blenkernel/intern/tracking.c
@@ -2426,7 +2426,7 @@ static void tracks_map_merge(TracksMap *map, MovieTracking *tracking)
/* find original of operating track in list of previously displayed tracks */
old_track = BLI_ghash_lookup(map->hash, track);
if (old_track) {
- if (BLI_findindex(old_tracks->first, old_track) != -1) {
+ if (BLI_findindex(old_tracks, old_track) != -1) {
/* Update active track in movie clip. */
if (old_track == act_track) {
tracking->act_track = new_track;