No need to manually compute frame_final_start

This commit is contained in:
Sybren A. Stüvel 2016-04-15 15:08:27 +02:00
parent 8ca4159fe8
commit 537dcf846a

View File

@ -342,7 +342,8 @@ class AttractShotsOrderUpdate(AttractOperatorMixin, Operator):
if strip.atc_object_id] if strip.atc_object_id]
strips_with_atc_object_id.sort( strips_with_atc_object_id.sort(
key=lambda strip: strip.frame_start + strip.frame_offset_start) key=lambda strip: strip.frame_final_start)
for index, strip in enumerate(strips_with_atc_object_id): for index, strip in enumerate(strips_with_atc_object_id):
""" """
# Currently we use the code below to force update all nodes. # Currently we use the code below to force update all nodes.