Compare commits

..

No commits in common. "2690a197c607ff22cd9b7b57c01329ae26f5783c" and "c623f3e0a8a37b5a62cf0e1eb9e4d6bb39b3c0ea" have entirely different histories.

2 changed files with 2 additions and 6 deletions

View File

@ -413,8 +413,8 @@ class VSETB_OT_open_strip_folder(Operator):
cls.poll_message_set('No active')
return
if not any(p in get_channel_name(strip) for p in ('Movie', 'Video', 'Audio', 'Sound')):
cls.poll_message_set('No active Movie or Audio strip')
if not any(p in get_channel_name(strip) for p in ('Shots', 'Sequences', 'Movie', 'Video', 'Audio', 'Sound')):
cls.poll_message_set('Only for Shots, Sequences, Movie and Audio strips')
return
return True

View File

@ -449,10 +449,6 @@ class VSETB_OT_open_shot_on_tracker(Operator):
@classmethod
def poll(cls, context):
if not get_strips(channel='Shots', selected_only=True):
cls.poll_message_set('No active Shots strip')
return
prefs = get_addon_prefs()
if prefs.tracker:
return True