Skip to content

Commit 56556a9

Browse files
committed
fixed: [EEZ Flow] Assignable user property to flow output only works for native user actions #596
1 parent f07d4f2 commit 56556a9

File tree

8 files changed

+13
-8
lines changed

8 files changed

+13
-8
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.

packages/project-editor/lvgl/build.ts

-2
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,6 @@ export class LVGLBuild extends Build {
290290
"",
291291
false
292292
);
293-
294-
console.log(this.lvglObjectIdentifiers);
295293
}
296294

297295
isAccessibleFromSourceCode(widget: LVGLWidget) {

resources/eez-framework-amalgamation/eez-flow.cpp

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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 */
22
/*
33
* eez-framework
44
*
@@ -3214,6 +3214,9 @@ void executeCallAction(FlowState *flowState, unsigned componentIndex, int flowIn
32143214
if (!evalAssignableProperty(flowState, componentIndex, i, value, FlowError::UserProperty("CallAction", i))) {
32153215
break;
32163216
}
3217+
if (value.getType() == VALUE_TYPE_FLOW_OUTPUT) {
3218+
value = Value::makePropertyRef(flowState, componentIndex, i, 0x5696e703);
3219+
}
32173220
} else {
32183221
if (!evalProperty(flowState, componentIndex, i, value, FlowError::UserAssignableProperty("CallAction", i))) {
32193222
break;
@@ -10384,8 +10387,12 @@ void assignValue(FlowState *flowState, int componentIndex, Value &dstValue, cons
1038410387
auto propertyRef = pDstValue->getPropertyRef();
1038510388
Value dstValue;
1038610389
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+
}
1038910396
}
1039010397
return;
1039110398
}

resources/eez-framework-amalgamation/eez-flow.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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 */
22
/*
33
* eez-framework
44
*

0 commit comments

Comments
 (0)