From ae51f51a865a47011decf1c6d4e3d24eac199cae Mon Sep 17 00:00:00 2001 From: Michael De Caria Date: Thu, 12 Oct 2023 16:52:31 +1100 Subject: [PATCH] Fix missing Default View Transform on equal operator Add the missing assignment of the the default view transform when a config is copied using the equal operator Signed-off-by: Michael De Caria --- src/OpenColorIO/Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenColorIO/Config.cpp b/src/OpenColorIO/Config.cpp index 1a2307dd50..a17d1dc288 100644 --- a/src/OpenColorIO/Config.cpp +++ b/src/OpenColorIO/Config.cpp @@ -435,7 +435,7 @@ class Config::Impl { m_viewTransforms.push_back(vt->createEditableCopy()); } - + m_defaultViewTransform = rhs.m_defaultViewTransform; m_defaultLumaCoefs = rhs.m_defaultLumaCoefs; m_strictParsing = rhs.m_strictParsing;