Fix #36643: Clip Editor: undesired Markers created "automatically" while I track my marker

Was a typo from recent commint from my own.
This commit is contained in:
2013-09-03 09:18:08 +00:00
parent 5d2dd0a3fe
commit 8b40be18d3

View File

@@ -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;