diff --git a/client/ayon_core/plugins/publish/extract_thumbnail_from_source.py b/client/ayon_core/plugins/publish/extract_thumbnail_from_source.py index 702244a45f..2e1d437f5d 100644 --- a/client/ayon_core/plugins/publish/extract_thumbnail_from_source.py +++ b/client/ayon_core/plugins/publish/extract_thumbnail_from_source.py @@ -40,7 +40,10 @@ class ExtractThumbnailFromSource(pyblish.api.InstancePlugin): order = pyblish.api.ExtractorOrder + 0.48 # Settings - target_size = {"type": "source", "resize": {"width": 1920, "height": 1080}} + target_size = { + "type": "resize", + "resize": {"width": 1920, "height": 1080} + } background_color = (0, 0, 0, 0.0)