Fix second part of T45987: Node preview was still using wrong color space

This commit is contained in:
Sergey Sharybin 2015-09-02 22:45:39 +05:00
parent c8cc664ce3
commit 390bc05b32
Notes: blender-bot 2023-02-14 10:21:15 +01:00
Referenced by issue #45736, Channel key error: color spaces modes
1 changed files with 2 additions and 2 deletions

View File

@ -88,10 +88,10 @@ void ChannelMatteNode::convertToOperations(NodeConverter &converter, const Compo
converter.addOperation(inv_convert);
converter.addLink(operationAlpha->getOutputSocket(0), inv_convert->getInputSocket(0));
converter.mapOutputSocket(outputSocketImage, inv_convert->getOutputSocket());
converter.addPreview(inv_convert->getOutputSocket());
}
else {
converter.mapOutputSocket(outputSocketImage, operationAlpha->getOutputSocket());
converter.addPreview(operationAlpha->getOutputSocket());
}
converter.addPreview(operationAlpha->getOutputSocket());
}