Avoid choosing same source and destination channel in the scene cut detection

master
christophe.seux 2025-01-10 16:31:57 +01:00
parent 425c842bfd
commit 17f3e0c71b
1 changed files with 4 additions and 4 deletions

View File

@ -204,13 +204,13 @@ class VSETB_OT_scene_cut_detection(Operator):
def invoke(self, context, event):
# Select active channel by default
if strip := context.active_sequence_strip:
self.source_channel_name = get_channel_name(strip)
if context.scene.sequence_editor.channels.get('Shots'):
self.destination_channel_name = 'Shots'
# Select active channel by default
if (strip := context.active_sequence_strip) and get_channel_name(strip) != 'Shots':
self.source_channel_name = get_channel_name(strip)
self.frame_start = context.scene.frame_start
self.frame_end = context.scene.frame_end