Skip to content

Commit bc8569b

Browse files
Fix missing Default View Transform on equal operator (#1886)
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 <[email protected]> Signed-off-by: Doug Walker <[email protected]> Co-authored-by: Doug Walker <[email protected]>
1 parent 8add374 commit bc8569b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OpenColorIO/Config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ class Config::Impl
435435
{
436436
m_viewTransforms.push_back(vt->createEditableCopy());
437437
}
438-
438+
m_defaultViewTransform = rhs.m_defaultViewTransform;
439439
m_defaultLumaCoefs = rhs.m_defaultLumaCoefs;
440440
m_strictParsing = rhs.m_strictParsing;
441441

0 commit comments

Comments
 (0)