Fix: implicit field socket ignored

Follow up to rB86a471efe71a84d807e682445fd73a247f196612.
This commit is contained in:
2023-01-04 13:12:11 +01:00
parent 86a471efe7
commit 1beaec46b8

View File

@@ -349,8 +349,8 @@ class SocketDeclarationBuilder : public BaseSocketDeclarationBuilder {
/** The input is evaluated on a subset of the geometry inputs. */
Self &implicit_field_on(ImplicitInputValueFn fn, const Span<int> input_indices)
{
this->implicit_field(fn);
this->field_on(input_indices);
this->implicit_field(fn);
return *(Self *)this;
}