mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix color_settings condition
This commit is contained in:
parent
7db14f47c1
commit
40cc4d2b98
2 changed files with 2 additions and 2 deletions
|
|
@ -22,7 +22,7 @@ class CreateReview(plugin.HoudiniCreator):
|
|||
color_settings = project_settings["houdini"]["imageio"].get(
|
||||
"workfile", {}
|
||||
)
|
||||
if not color_settings.get("enabled"):
|
||||
if color_settings.get("enabled"):
|
||||
self.review_color_space = color_settings.get("review_color_space")
|
||||
|
||||
def create(self, product_name, instance_data, pre_create_data):
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ class ValidateReviewColorspace(pyblish.api.InstancePlugin,
|
|||
"workfile", {}
|
||||
)
|
||||
# Add review color settings
|
||||
if not color_settings.get("enabled"):
|
||||
if color_settings.get("enabled"):
|
||||
cls.review_color_space = color_settings.get("review_color_space")
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue