Fix export csv

This commit is contained in:
“christopheseux”
2023-06-21 11:14:56 +02:00
parent 4a2dc9e55e
commit 4ae3f978bc
3 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ def get_strips(channel=0, selected_only=False):
if isinstance(channel, str):
channel = get_channel_index(channel)
strips = [s for s in scn.sequence_editor.sequences_all if s.channel==channel]
strips = [s for s in scn.sequence_editor.sequences if s.channel==channel]
if selected_only:
strips = [s for s in strips if s.select]