Fix T44149: Compositing : Node Groups do not work correctly

Input constants are to be connected before removing proxies,
otherwise node groups might give totally different result.

This is a regression and to be put into final release.
This commit is contained in:
Sergey Sharybin 2015-03-27 17:25:12 +05:00
parent 3366b30bf1
commit 8af5390968
Notes: blender-bot 2023-02-14 09:19:09 +01:00
Referenced by issue #44200, Node groups : group inputs have no effects inside group
Referenced by issue #44149, Compositing : Node Groups do not work correctly
1 changed files with 2 additions and 2 deletions

View File

@ -101,12 +101,12 @@ void NodeOperationBuilder::convertToOperations(ExecutionSystem *system)
}
}
add_operation_input_constants();
resolve_proxies();
add_datatype_conversions();
add_operation_input_constants();
determineResolutions();
/* surround complex ops with read/write buffer */