Compare commits
No commits in common. "2690a197c607ff22cd9b7b57c01329ae26f5783c" and "c623f3e0a8a37b5a62cf0e1eb9e4d6bb39b3c0ea" have entirely different histories.
2690a197c6
...
c623f3e0a8
|
@ -413,8 +413,8 @@ class VSETB_OT_open_strip_folder(Operator):
|
||||||
cls.poll_message_set('No active')
|
cls.poll_message_set('No active')
|
||||||
return
|
return
|
||||||
|
|
||||||
if not any(p in get_channel_name(strip) for p in ('Movie', 'Video', 'Audio', 'Sound')):
|
if not any(p in get_channel_name(strip) for p in ('Shots', 'Sequences', 'Movie', 'Video', 'Audio', 'Sound')):
|
||||||
cls.poll_message_set('No active Movie or Audio strip')
|
cls.poll_message_set('Only for Shots, Sequences, Movie and Audio strips')
|
||||||
return
|
return
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
|
@ -449,10 +449,6 @@ class VSETB_OT_open_shot_on_tracker(Operator):
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
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()
|
prefs = get_addon_prefs()
|
||||||
if prefs.tracker:
|
if prefs.tracker:
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in New Issue