This commit is contained in:
2015-02-13 16:09:24 +11:00
parent 1ae2098a6e
commit 616eb6818f
10 changed files with 24 additions and 18 deletions

View File

@@ -162,8 +162,8 @@ class CLIP_OT_filter_tracks(bpy.types.Operator):
# Find tracks with markers in both this frame and the previous one.
relevant_tracks = [
track for track in clip.tracking.tracks
if track.markers.find_frame(frame) and
track.markers.find_frame(frame - 1)]
if (track.markers.find_frame(frame) and
track.markers.find_frame(frame - 1))]
if not relevant_tracks:
continue