|
1 |
| -/* Autogenerated on October 17, 2024 10:33:39 AM from eez-framework commit b44b5e6a9d48f0b14b8af0ab02537c9c14f4ab95 */ |
| 1 | +/* Autogenerated on October 17, 2024 11:48:27 AM from eez-framework commit b44b5e6a9d48f0b14b8af0ab02537c9c14f4ab95 */ |
2 | 2 | /*
|
3 | 3 | * eez-framework
|
4 | 4 | *
|
@@ -3214,6 +3214,9 @@ void executeCallAction(FlowState *flowState, unsigned componentIndex, int flowIn
|
3214 | 3214 | if (!evalAssignableProperty(flowState, componentIndex, i, value, FlowError::UserProperty("CallAction", i))) {
|
3215 | 3215 | break;
|
3216 | 3216 | }
|
| 3217 | + if (value.getType() == VALUE_TYPE_FLOW_OUTPUT) { |
| 3218 | + value = Value::makePropertyRef(flowState, componentIndex, i, 0x5696e703); |
| 3219 | + } |
3217 | 3220 | } else {
|
3218 | 3221 | if (!evalProperty(flowState, componentIndex, i, value, FlowError::UserAssignableProperty("CallAction", i))) {
|
3219 | 3222 | break;
|
@@ -10384,8 +10387,12 @@ void assignValue(FlowState *flowState, int componentIndex, Value &dstValue, cons
|
10384 | 10387 | auto propertyRef = pDstValue->getPropertyRef();
|
10385 | 10388 | Value dstValue;
|
10386 | 10389 | if (evalAssignableProperty(propertyRef->flowState, propertyRef->componentIndex, propertyRef->propertyIndex, dstValue, FlowError::Plain("Failed to evaluate an assignable user property in UserWidget"), nullptr, nullptr)) {
|
10387 |
| - assignValue(flowState, componentIndex, dstValue, srcValue); |
10388 |
| - onValueChanged(pDstValue); |
| 10390 | + if (dstValue.getType() == VALUE_TYPE_FLOW_OUTPUT) { |
| 10391 | + propagateValue(propertyRef->flowState, propertyRef->componentIndex, dstValue.getUInt16(), srcValue); |
| 10392 | + } else { |
| 10393 | + assignValue(flowState, componentIndex, dstValue, srcValue); |
| 10394 | + onValueChanged(pDstValue); |
| 10395 | + } |
10389 | 10396 | }
|
10390 | 10397 | return;
|
10391 | 10398 | }
|
|
0 commit comments