From e06d2fe8f5317964bd4208c73be6b747fefaa297 Mon Sep 17 00:00:00 2001 From: Roy Nieterau Date: Thu, 5 Apr 2018 16:32:13 +0200 Subject: [PATCH] Refactor OpenImageSequence to PlayImageSequence to describe the intent of playing it and not opening it to alter the files. --- colorbleed/plugins/global/load/open_imagesequence.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colorbleed/plugins/global/load/open_imagesequence.py b/colorbleed/plugins/global/load/open_imagesequence.py index 2386f0c6e7..12fb9a0226 100644 --- a/colorbleed/plugins/global/load/open_imagesequence.py +++ b/colorbleed/plugins/global/load/open_imagesequence.py @@ -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"