Moved order to trigger later

No need to trigger so early, but must be triggered before regular one to limit double creation of thumbnail.
This commit is contained in:
Petr Kalis 2025-12-04 13:03:18 +01:00
parent 3edb0148cd
commit 08c03e980b

View file

@ -33,7 +33,10 @@ class ExtractThumbnailFromSource(pyblish.api.InstancePlugin):
label = "Extract Thumbnail (from source)"
# Before 'ExtractThumbnail' in global plugins
order = pyblish.api.ExtractorOrder - 0.00001
order = pyblish.api.ExtractorOrder + 0.48
# Settings
profiles = None
def process(self, instance):
self._create_context_thumbnail(instance.context)