Refactor OpenImageSequence to PlayImageSequence to describe the intent of playing it and not opening it to alter the files.

This commit is contained in:
Roy Nieterau 2018-04-05 16:32:13 +02:00
parent c4a289692f
commit e06d2fe8f5

View file

@ -15,13 +15,13 @@ def open(filepath):
subprocess.call(('xdg-open', filepath))
class OpenImageSequence(api.Loader):
class PlayImageSequence(api.Loader):
"""Open Image Sequence with system default"""
families = ["colorbleed.imagesequence"]
representations = ["*"]
label = "Open sequence"
label = "Play sequence"
order = -10
icon = "play-circle"
color = "orange"